From c391eae023aa242f248c21a41ef69b1cc327f247 Mon Sep 17 00:00:00 2001 From: Matt Hickford Date: Tue, 6 Jan 2015 17:46:37 +0000 Subject: [PATCH] Fix classifiers not appearing on PyPI The classifiers weren't appearing on PyPI. https://pypi.python.org/pypi/clint/ This usually fixes it. --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index e1dd436..de25085 100755 --- a/setup.py +++ b/setup.py @@ -37,7 +37,7 @@ def publish(): ], install_requires=required, license='ISC', - classifiers=( + classifiers=[ # 'Development Status :: 5 - Production/Stable', 'Environment :: Console', 'Intended Audience :: Developers', @@ -51,5 +51,5 @@ def publish(): 'Programming Language :: Python :: 3.1', 'Programming Language :: Python :: 3.2', 'Topic :: Terminals :: Terminal Emulators/X Terminals', - ), + ], )