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, install_requires=requirements + test_requirements,
zip_safe=False, zip_safe=False,
test_suite='tests', test_suite='tests',
classifiers=['Development Status :: 4 - Beta', classifiers=[
'Environment :: Other Environment', 'Development Status :: 4 - Beta',
'Intended Audience :: Developers', 'Environment :: Other Environment',
'Operating System :: OS Independent', 'Intended Audience :: Developers',
'Programming Language :: Python', 'Operating System :: OS Independent',
'Topic :: Utilities', 'Programming Language :: Python',
'License :: OSI Approved :: Apache Software License' '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',
], ],
) )