File tree Expand file tree Collapse file tree 1 file changed +3
-6
lines changed
Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Original file line number Diff line number Diff line change 11import setuptools
2- import re
32
43from dexplot import __version__
54
65with open ("README.md" , "r" ) as fh :
76 long_description = fh .read ()
87
9- pat = r'!\[png\]\('
10- repl = r'
12-
138setuptools .setup (
149 name = "dexplot" ,
1510 version = __version__ ,
1813 description = "Data Visualization library using matplotlib for both long and wide data" ,
1914 long_description = long_description ,
2015 long_description_content_type = "text/markdown" ,
16+ keywords = "visualization matplotlib pandas" ,
2117 url = "https://github.com/dexplo/dexplot" ,
2218 packages = setuptools .find_packages (),
2319 classifiers = [
2420 "Programming Language :: Python :: 3" ,
2521 "License :: OSI Approved :: BSD License" ,
2622 "Operating System :: OS Independent" ,
2723 ],
28- install_requires = ['matplotlib' , 'pandas' ]
24+ install_requires = ['matplotlib' , 'pandas' ],
25+ python_requires = '>=3.6'
2926)
You can’t perform that action at this time.
0 commit comments