-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (35 loc) · 892 Bytes
/
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
[tool.poetry]
name = "bentoml_mlflow_demo"
version = "0.1.0"
description = ""
authors = ["ekwska <ekwiecinska55@gmail.com>"]
[tool.poetry.dependencies]
python = "^3.9"
torch = { version = "2.1.0+cpu", source = "torch_cpu"}
torchvision = { version = "0.16.0+cpu", source = "torch_cpu" }
bentoml = {version = "*", extras = ["io-image"]}
pip = "*"
bump2version = "*"
wheel = "*"
watchdog = "*"
Pillow = "*"
numpy = "*"
mlflow = "2.8.0"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
tox = "*"
coverage = "*"
twine = "*"
black = "*"
flake8 = "*"
sphinx = "^7.2.6"
sphinx_rtd_theme = { version = "^0.4.3", optional = true }
[[tool.poetry.source]]
name = "torch_cpu"
url = "https://download.pytorch.org/whl/cpu"
priority = "supplemental"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
train = "bentoml_mlflow_demo.train:main"