-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
55 lines (50 loc) · 1.23 KB
/
pyproject.toml
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
# pyproject.toml
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "airdot"
version = "0.5.0b0"
description = "A code base for deploying ml api "
readme = "README.md"
authors = [{ name = "airdot-io", email = "[email protected]" }]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
]
dependencies = [
"google-api-python-client==2.78",
"google-cloud-core==2.3",
"google-cloud-storage==2.7",
"google-auth",
"boto==2.49",
"botocore==1.29",
"boto3==1.26",
"docker==6.1",
"redis==4.5",
"pydantic==1.10.8",
"kubernetes",
"tabulate"
]
requires-python = ">=3.6"
[project.optional-dependencies]
dev = [
"black==22.6.0",
"pytest==7.1.2",
"google-api-python-client==2.78.0",
"google-cloud-core==2.3.2",
"google-cloud-storage==2.7.0",
"google-auth",
"zstd==1.5.2.6",
"boto==2.49.0",
"botocore==1.29.127",
"boto3==1.26",
"docker==6.1.2",
"redis==4.5.5",
"pydantic==1.10.8",
"kubernetes==26"
]
[project.urls]
Homepage = "https://github.com/airdot-io/airdot-Deploy"