Declare explicitly supported python versions

This commit is contained in:
Nicolas Delaby 2014-01-07 15:08:32 +01:00
parent 2891c63870
commit 700fbd3df7
1 changed files with 12 additions and 7 deletions

View File

@ -17,12 +17,17 @@ setup(
install_requires=requirements + test_requirements,
zip_safe=False,
test_suite='tests',
classifiers=['Development Status :: 4 - Beta',
'Environment :: Other Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities',
'License :: OSI Approved :: Apache Software License'
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Other Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Topic :: Utilities',
'License :: OSI Approved :: Apache Software License',
],
)