Fix classifiers not appearing on PyPI

The classifiers weren't appearing on PyPI. https://pypi.python.org/pypi/clint/

This usually fixes it.
This commit is contained in:
Matt Hickford
2015-01-06 17:46:37 +00:00
parent e3f283ed6e
commit c391eae023
+2 -2
View File
@@ -37,7 +37,7 @@ setup(
],
install_requires=required,
license='ISC',
classifiers=(
classifiers=[
# 'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
@@ -51,5 +51,5 @@ setup(
'Programming Language :: Python :: 3.1',
'Programming Language :: Python :: 3.2',
'Topic :: Terminals :: Terminal Emulators/X Terminals',
),
],
)