From 6b02b599672d4588dafaa329d0bf72e756d62494 Mon Sep 17 00:00:00 2001 From: Adam Coddington Date: Fri, 11 Oct 2013 18:35:26 -0700 Subject: [PATCH] Bumping version number; adding trove classifiers (including those for python-version limitations). --- setup.py | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 139a6b7..87420f2 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ with open('requirements.txt') as f: setup( name='pyicloud', - version='0.2.1', + version='0.3.0', url='https://github.com/picklepete/pyicloud', description=( 'PyiCloud is a module which allows pythonistas to ' @@ -16,5 +16,13 @@ setup( author='Peter Evans', author_email='evans.peter@gmail.com', packages=find_packages(), - install_requires=required + install_requires=required, + classifiers=[ + 'Intended Audience :: Developers', + 'Operating System :: OS Independent', + 'Programming Language :: Python', + 'Programming Language :: Python :: 2.6', + 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3', + ], )