diff --git a/setup.py b/setup.py index 08261b47616a..03f18abff536 100644 --- a/setup.py +++ b/setup.py @@ -73,6 +73,16 @@ ext_modules = [] +classifiers = [ + 'Development Status :: 5 - Production/Stable', + 'Intended Audience :: Science/Research', + 'License :: OSI Approved :: Python Software Foundation License', + 'Programming Language :: Python', + 'Programming Language :: Python :: 2', + 'Programming Language :: Python :: 3', + 'Topic :: Scientific/Engineering :: Visualization', + ] + for line in open('lib/matplotlib/__init__.py').readlines(): if (line.startswith('__version__')): exec(line.strip()) @@ -319,6 +329,7 @@ def run_2to3(self, files): ext_modules = ext_modules, package_dir = package_dir, package_data = package_data, + classifiers = classifiers, cmdclass = {'build_py': build_py}, **additional_params )