Skip to content

Commit

Permalink
Add trove classifiers to setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
takluyver committed Oct 24, 2012
1 parent a3459a2 commit 808295f
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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())
Expand Down Expand Up @@ -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
)

0 comments on commit 808295f

Please sign in to comment.