Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 93e16e7

Browse filesBrowse files
committed
Merge pull request #1430 from takluyver/trove-classifiers
Add trove classifiers to setup.py
2 parents a3459a2 + 808295f commit 93e16e7
Copy full SHA for 93e16e7

File tree

Expand file treeCollapse file tree

1 file changed

+11
-0
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+11
-0
lines changed

‎setup.py

Copy file name to clipboardExpand all lines: setup.py
+11Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,16 @@
7373

7474
ext_modules = []
7575

76+
classifiers = [
77+
'Development Status :: 5 - Production/Stable',
78+
'Intended Audience :: Science/Research',
79+
'License :: OSI Approved :: Python Software Foundation License',
80+
'Programming Language :: Python',
81+
'Programming Language :: Python :: 2',
82+
'Programming Language :: Python :: 3',
83+
'Topic :: Scientific/Engineering :: Visualization',
84+
]
85+
7686
for line in open('lib/matplotlib/__init__.py').readlines():
7787
if (line.startswith('__version__')):
7888
exec(line.strip())
@@ -319,6 +329,7 @@ def run_2to3(self, files):
319329
ext_modules = ext_modules,
320330
package_dir = package_dir,
321331
package_data = package_data,
332+
classifiers = classifiers,
322333
cmdclass = {'build_py': build_py},
323334
**additional_params
324335
)

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.