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 7373
7474ext_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+
7686for 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 )
You can’t perform that action at this time.
0 commit comments