File tree Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change 73
73
74
74
ext_modules = []
75
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
+
76
86
for line in open ('lib/matplotlib/__init__.py' ).readlines ():
77
87
if (line .startswith ('__version__' )):
78
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
)
You can’t perform that action at this time.
0 commit comments