Merge pull request #70 from timofurrer/classifiers

Add some reasonable trove classifiers
This commit is contained in:
2017-05-28 08:53:52 -07:00
committed by GitHub
2 changed files with 14 additions and 1 deletions
+2
View File
@@ -0,0 +1,2 @@
[bdist_wheel]
universal = 1
+12 -1
View File
@@ -49,6 +49,17 @@ setup(
install_requires=required,
license='MIT',
classifiers=(
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Software Development :: Libraries :: Python Modules'
),
)