-
Notifications
You must be signed in to change notification settings - Fork 702
/
setup.py
27 lines (24 loc) · 898 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
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", "__metadata__.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(
author="Igor Tavares",
url="https://github.com/awslabs/aws-data-wrangler",
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"]),
include_package_data=True,
python_requires=">=3.6, <3.9",
install_requires=[open("requirements.txt").read().strip().split("\n")]
)