Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Add trove classifiers to setup.py
  • Loading branch information
takluyver committed Oct 24, 2012
commit 808295fade59bcf4062bc9d67331fce5dea56c1a
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
)