Skip to content
This repository has been archived by the owner on Mar 31, 2024. It is now read-only.

Commit

Permalink
Fix classifiers not appearing on PyPI
Browse files Browse the repository at this point in the history
The classifiers weren't appearing on PyPI. https://pypi.python.org/pypi/clint/

This usually fixes it.
  • Loading branch information
hickford committed Jan 6, 2015
1 parent e3f283e commit c391eae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def publish():
],
install_requires=required,
license='ISC',
classifiers=(
classifiers=[
# 'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
Expand All @@ -51,5 +51,5 @@ def publish():
'Programming Language :: Python :: 3.1',
'Programming Language :: Python :: 3.2',
'Topic :: Terminals :: Terminal Emulators/X Terminals',
),
],
)

0 comments on commit c391eae

Please sign in to comment.