Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a3459a2 + 808295f commit 93e16e7Copy full SHA for 93e16e7
setup.py
@@ -73,6 +73,16 @@
73
74
ext_modules = []
75
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
+
86
for line in open('lib/matplotlib/__init__.py').readlines():
87
if (line.startswith('__version__')):
88
exec(line.strip())
@@ -319,6 +329,7 @@ def run_2to3(self, files):
319
329
ext_modules = ext_modules,
320
330
package_dir = package_dir,
321
331
package_data = package_data,
332
+ classifiers = classifiers,
322
333
cmdclass = {'build_py': build_py},
323
334
**additional_params
324
335
)
0 commit comments