From 0613ecf71e2a4cd3e9d6c2c2d3e44a86563c9cae Mon Sep 17 00:00:00 2001 From: Mahmoud Hashemi Date: Fri, 10 Apr 2015 14:52:00 -0700 Subject: [PATCH] bumping setup for release (+python3 classifier) --- setup.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 5333498..e1c56cb 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ from setuptools import setup __author__ = 'Mahmoud Hashemi' -__version__ = '0.5.2dev' +__version__ = '0.6.0' __contact__ = 'mahmoudrhashemi@gmail.com' __url__ = 'https://github.com/mahmoud/boltons' __license__ = 'BSD' @@ -39,5 +39,6 @@ setup(name='boltons', 'Intended Audience :: Developers', 'Topic :: Software Development :: Libraries', 'Programming Language :: Python :: 2.6', - 'Programming Language :: Python :: 2.7', ] + 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3.4', ] )