forked from determined-ai/determined
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
62 lines (61 loc) · 2 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
import setuptools
setuptools.setup(
name="determined",
version="0.22.3-dev0",
author="Determined AI",
author_email="[email protected]",
url="https://determined.ai/",
description="Determined Deep Learning Training Platform",
long_description="See https://docs.determined.ai/ for more information.",
license="Apache License 2.0",
classifiers=["License :: OSI Approved :: Apache Software License"],
# Use find_namespace_packages because it will include data-only packages (that is, directories
# containing only non-python files, like our gcp terraform directory).
packages=setuptools.find_namespace_packages(include=["determined*"]),
# Technically, we haven't supported 3.6 or tested against it since it went EOL. But some users
# are still using it successfully so there's hardly a point in breaking them.
python_requires=">=3.6",
include_package_data=True,
install_requires=[
"matplotlib",
"packaging",
"numpy>=1.16.2",
"psutil",
"pyzmq>=18.1.0",
"yogadl==0.1.4",
# Common:
"certifi",
"filelock",
"google-cloud-storage",
"hdfs>=2.2.2",
"lomond>=0.3.3",
"pathspec>=0.6.0",
"azure-core",
"azure-storage-blob",
"termcolor>=1.1.0",
"boto3",
# CLI:
"argcomplete>=1.9.4",
"gitpython>=3.1.3",
"pyOpenSSL>= 19.1.0",
"python-dateutil",
"pytz",
"tabulate>=0.8.3",
# det preview-search "pretty-dumps" a sub-yaml with an API added in 0.15.29
"ruamel.yaml>=0.15.29",
# Deploy
"docker[ssh]>=3.7.3",
"google-api-python-client>=1.12.1",
"paramiko>=2.4.2", # explicitly pull in paramiko to prevent DistributionNotFound error
"tqdm",
"appdirs",
# Telemetry
"analytics-python",
],
zip_safe=False,
entry_points={
"console_scripts": [
"det = determined.cli.__main__:main",
]
},
)