From 12a2518bd428a6e77475ad5b5f400b452b83e78b Mon Sep 17 00:00:00 2001 From: Jerome Kieffer Date: Thu, 17 Dec 2015 09:33:22 +0100 Subject: [PATCH] include classifiers --- setup.py | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index b4480e5..c29bc96 100644 --- a/setup.py +++ b/setup.py @@ -249,6 +249,23 @@ def run(self): cmdclass['test'] = PyTest +classifiers = ["Development Status :: 5 - Production/Stable", + "Intended Audience :: Developers", + "Programming Language :: Python :: 2", + "Programming Language :: Python :: 3", + "Programming Language :: Cython", + "Environment :: Console", + "Intented Audience :: Science/Research", + "License :: OSI Approved :: MIT License", + "Topic :: Software Development :: Libraries :: Python Modules", + "Operating System :: Microsoft :: Windows", + "Operating System :: Unix", + "Operating System :: MacOS :: MacOS X", + "Operating System :: POSIX", + "Topic :: Scientific/Engineering :: Physics", + "Topic :: Scientific/Engineering :: Bio-Informatics" + ] + setup(name="freesas", version=get_version(), @@ -262,5 +279,6 @@ def run(self): scripts=script_files, install_requires=['numpy', "six"], ext_modules=ext_modules, - cmdclass=cmdclass + cmdclass=cmdclass, + classifiers=classifiers )