Tidy up PyPI trove classifiers a bit, re #51

(Also some not strictly #51 related classifiers, because why not)
This commit is contained in:
Jeff Forcier 2016-07-25 17:29:01 -07:00
parent 9cf90d4509
commit dcf1d20900

View file

@ -18,19 +18,23 @@ setup(
packages=['releases'], packages=['releases'],
install_requires=['semantic_version<3.0'], install_requires=['semantic_version<3.0'],
classifiers=[ classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers', 'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License', 'License :: OSI Approved :: BSD License',
'Operating System :: MacOS :: MacOS X', 'Operating System :: MacOS :: MacOS X',
'Operating System :: Unix', 'Operating System :: Unix',
'Operating System :: POSIX', 'Operating System :: POSIX',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python', 'Programming Language :: Python',
'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.2', 'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Software Development', 'Topic :: Software Development',
'Topic :: Software Development :: Build Tools', 'Topic :: Software Development :: Documentation',
'Topic :: Software Development :: Libraries', 'Topic :: Documentation',
'Topic :: Software Development :: Libraries :: Python Modules', 'Topic :: Documentation :: Sphinx',
], ],
) )