-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpyproject.toml
51 lines (46 loc) · 1.21 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
[tool.poetry]
name = "nbox"
version = "0.13.0c18"
description = "ML Inference 🥶"
authors = [
"NBX Research <[email protected]>",
"Yash Bonde <[email protected]>",
"Aakash Kaushik <[email protected]>",
"Akash Pathak <[email protected]>",
"Shubham Rao <[email protected]>",
]
homepage = "https://github.com/NimbleBoxAI/nbox"
repository = "https://github.com/NimbleBoxAI/nbox"
documentation = "https://nimbleboxai.github.io/nbox/"
license = "Apache License 2.0"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.8"
# astea = "^1.0"
tqdm = "4.64.0"
randomname = "^0.1.3"
requests = "^2.31.0"
tabulate = "0.8.9"
protobuf = "3.20.2"
mypy-protobuf = "3.2.0" # this is used for generating nbox spec
grpcio = "1.51.1"
Jinja2 = "3.0.3"
cloudpickle = "2.1.0"
python-json-logger = "2.0.2"
GitPython = "3.1.30"
gputil = "1.4.0"
psutil = "5.9.0"
dateparser = "1.1.7"
astea = "1.4"
fastapi = {version = "^0.95.1", optional = true}
uvicorn = {version = "^0.18.2", optional = true}
[tool.poetry.extras]
serving = ["fastapi", "uvicorn"]
[tool.poetry.scripts]
nbx = "nbox.cli:main"
[build-system]
requires = [
"poetry-core>=1.0.0",
"setuptools"
]
build-backend = "poetry.core.masonry.api"