-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (33 loc) · 940 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
34
35
36
37
38
from codecs import open
from setuptools import setup
requires = [
"pandas",
"boto3",
"google-api-python-client",
"google-auth-httplib2",
"google-auth-oauthlib",
"google-cloud-storage",
]
about = {
"__description__": "tool to interact with data from different storage services",
"__author__": "SangDinh",
"__author_email__": "[email protected]",
"__url__": "https://github.com/sang-d/data-connector",
}
with open("README.md", "r", "utf-8") as f:
readme = f.read()
setup(
name="dataco",
version="0.1.2",
description=about["__description__"],
long_description=readme,
long_description_content_type="text/markdown",
author=about["__author__"],
author_email=about["__author_email__"],
url=about["__url__"],
include_package_data=True,
install_requires=requires,
package_dir={"dataco": "src"},
packages=["dataco"],
python_requires=">=3.4, <4",
)