forked from aws/aws-sdk-pandas
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
33 lines (30 loc) · 942 Bytes
/
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
import os
from io import open
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
about = {}
path = os.path.join(here, "awswrangler", "__version__.py")
with open(file=path, mode="r", encoding="utf-8") as f:
exec(f.read(), about)
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name=about["__title__"],
version=about["__version__"],
description=about["__description__"],
long_description=long_description,
long_description_content_type="text/markdown",
license=about["__license__"],
packages=find_packages(include=["awswrangler", "awswrangler.*"], exclude=["tests"]),
python_requires=">=3.6",
install_requires=[
"numpy~=1.17.3",
"pandas~=0.25.2",
"pyarrow~=0.14.0",
"botocore~=1.12.253",
"boto3~=1.9.253",
"s3fs~=0.3.5",
"tenacity~=5.1.1",
"pg8000~=1.13.2",
],
)