forked from dstackai/dstack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
149 lines (131 loc) · 3.56 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
import re
import sys
from pathlib import Path
from setuptools import find_packages, setup
project_dir = Path(__file__).parent
def get_version():
text = (project_dir / "src" / "dstack" / "version.py").read_text()
match = re.compile(r"__version__\s*=\s*\"?([^\n\"]+)\"?.*").match(text)
if match:
if match.group(1) != "None":
return match.group(1)
else:
return None
else:
sys.exit("Can't parse version.py")
def get_long_description():
return re.sub(
r"<picture>\s*|<source[^>]*>\s*|\s*</picture>|<video[^>]*>\s*|</video>\s*|### Demo\s*",
"",
open(project_dir / "README.md").read(),
)
BASE_DEPS = [
"pyyaml",
"requests",
"typing-extensions>=4.0.0",
"cryptography",
"packaging",
"python-dateutil",
"gitpython",
"jsonschema",
"paramiko",
"cursor",
"rich",
"rich-argparse",
"tqdm",
"simple-term-menu",
"fastapi",
"starlette>=0.26.0",
"uvicorn",
"pydantic>=1.10.10,<2.0.0",
"pydantic-duality>=1.2.0",
"sqlalchemy[asyncio]>=2.0.0",
"sqlalchemy_utils>=0.40.0",
"alembic>=1.10.2",
"apscheduler<4",
"aiosqlite",
"aiohttp",
"websocket-client",
"watchfiles",
"python-multipart",
"filelock",
"docker>=6.0.0",
"python-dxf>=11.0.0",
"cachetools",
"dnspython",
"grpcio>=1.50", # indirect
"gpuhunt>=0.0.16,<0.1.0",
"sentry-sdk[fastapi]",
"httpx",
"aiorwlock",
"python-json-logger",
"alembic-postgresql-enum",
"asyncpg",
]
AWS_DEPS = [
"boto3",
"botocore",
]
AZURE_DEPS = [
"azure-identity>=1.12.0",
"azure-mgmt-subscription>=3.1.1",
"azure-mgmt-compute>=29.1.0",
"azure-mgmt-network>=23.0.0",
"azure-mgmt-resource>=22.0.0",
"azure-mgmt-authorization>=3.0.0",
]
GCP_DEPS = [
"google-auth>=2.3.0", # indirect
"google-cloud-storage>=2.0.0",
"google-cloud-compute>=1.5.0",
"google-cloud-logging>=2.0.0",
"google-api-python-client>=2.80.0",
"google-cloud-billing>=1.11.0",
"google-cloud-tpu>=1.18.3",
]
DATACRUNCH_DEPS = ["datacrunch"]
KUBERNETES_DEPS = ["kubernetes"]
LAMBDA_DEPS = AWS_DEPS
OCI_DEPS = ["oci"]
ALL_DEPS = AWS_DEPS + AZURE_DEPS + GCP_DEPS + DATACRUNCH_DEPS + KUBERNETES_DEPS + OCI_DEPS
setup(
name="dstack",
version=get_version(),
author="Andrey Cheptsov",
author_email="andrey@dstack.ai",
package_dir={"": "src"},
packages=find_packages("src"),
package_data={
"dstack._internal.server": ["statics/**/*"],
},
include_package_data=True,
scripts=[],
entry_points={
"console_scripts": ["dstack=dstack._internal.cli.main:main"],
},
url="https://dstack.ai",
project_urls={
"Source": "https://github.com/dstackai/dstack",
},
description="dstack is an open-source orchestration engine for running AI workloads on any cloud or on-premises.",
long_description=get_long_description(),
long_description_content_type="text/markdown",
python_requires=">=3.8",
install_requires=BASE_DEPS,
extras_require={
"all": ALL_DEPS,
"aws": AWS_DEPS,
"azure": AZURE_DEPS,
"datacrunch": DATACRUNCH_DEPS,
"gcp": GCP_DEPS,
"kubernetes": KUBERNETES_DEPS,
"lambda": LAMBDA_DEPS,
"oci": OCI_DEPS,
},
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Programming Language :: Python :: 3",
],
)