Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 808295f

Browse files
committed
Add trove classifiers to setup.py
1 parent a3459a2 commit 808295f

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

setup.py

Lines 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)