-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
43 lines (38 loc) · 1.38 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
35
36
37
38
39
40
41
42
43
import glob
import setuptools
with open("README.md", "r") as f:
long_description = f.read()
with open("requirements.txt", "r") as f:
requirements = f.read().strip().split("\n")
extras_require = {}
for path in glob.glob("requirements_*.txt"):
extra = path.split("_")[-1].split(".")[0]
with open(path, "r") as f:
extras_require[extra] = [
dep
for dep in map(str.strip, f.readlines())
if dep != "" and not dep.startswith("-")
]
setuptools.setup(
name = "datatap",
version = "0.3.0",
author = "Zensors' Dev Team",
author_email = "[email protected]",
description = "Client library for dataTap",
long_description = long_description,
long_description_content_type = "text/markdown",
url = "https://github.com/zensors/datatap-python", # pypi will add extra information if the url is the repo
packages = setuptools.find_packages(),
package_data = { "": ["image/assets/*"], "datatap": ["py.typed"] },
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
],
python_requires = ">=3.7",
install_requires = requirements,
extras_require = extras_require,
dependency_links = [
"https://download.pytorch.org/whl/nightly/cpu/torch_nightly.html"
],
)