diff --git a/setup.py b/setup.py index a693306..a96f95c 100644 --- a/setup.py +++ b/setup.py @@ -18,9 +18,22 @@ requires = ['argparse; python_version < "2.7"', 'pygments', 'babel'] setup_requires = ['setuptools_scm'] +classifiers = """ +Environment :: Console +License :: OSI Approved :: GNU General Public License v3 (GPLv3) +Programming Language :: Python :: 2 +Programming Language :: Python :: 2.7 +Programming Language :: Python :: 3 +Programming Language :: Python :: 3.4 +Programming Language :: Python :: 3.5 +Programming Language :: Python :: 3.6 +Programming Language :: Python :: 3.7 +""".strip().split('\n') + setup( name='colout', use_scm_version=True, + classifiers=classifiers, description='Color Up Arbitrary Command Output.', long_description=open('README.md').read(), author='nojhan',