-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (29 loc) · 1.05 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import io
import re
import setuptools
with io.open("README.md", "rt", encoding="utf8") as f:
long_description = f.read()
with io.open("df_io/__init__.py", "rt", encoding="utf8") as f:
version = re.search(r"__version__ = \"(.*?)\"", f.read()).group(1)
setuptools.setup(
name="df_io",
version=version,
author="NAGY, Attila",
author_email="[email protected]",
description="Helpers for doing IO with Pandas DataFrames",
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/Mikata-Project/df_io',
packages=setuptools.find_packages(),
install_requires=["numpy", "smart_open", "zstandard", "pandas", "parallel_write"],
extras_require={"test": ["boto3",
"pytest",
"pyarrow",
"lxml",
]},
classifiers=[
"Programming Language :: Python",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)