Skip to content

Commit 1a3523f

Browse files
committed
update
1 parent 9255179 commit 1a3523f

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

setup.py

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,10 @@
11
import setuptools
2-
import re
32

43
from dexplot import __version__
54

65
with open("README.md", "r") as fh:
76
long_description = fh.read()
87

9-
pat = r'!\[png\]\('
10-
repl = r'![png](https://raw.githubusercontent.com/dexplo/dexplot/master/'
11-
long_description = re.sub(pat, repl, long_description)
12-
138
setuptools.setup(
149
name="dexplot",
1510
version=__version__,
@@ -18,12 +13,14 @@
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
)

0 commit comments

Comments
 (0)