forked from bentoml/bentoctl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
48 lines (43 loc) · 1.26 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
[tool.poetry]
name = "bentoctl"
version = "0.1.1"
description = "Command line tool for deploying ML models to the cloud."
authors = ["bentoml.org <[email protected]>"]
homepage = "https://github.com/bentoml/bentoctl"
repository = "https://github.com/bentoml/bentoctl"
readme = "./README.md"
license = "Apache-2.0"
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Software Development",
]
[tool.poetry.scripts]
bentoctl = "bentoctl.cli:bentoctl"
[tool.poetry.urls]
"Source" = "https://github.com/bentoml/bentoctl"
"User Slack community" = "https://bit.ly/2N5IpbB"
"Bug Reports" = "https://github.com/bentoml/bentoctl/issues"
[tool.poetry.dependencies]
python = "^3.7"
bentoml = {git = "https://github.com/bentoml/BentoML", branch="main"}
click = "^7"
cerberus = "^1"
rich = "^10"
cloup = "^0.12"
PyYaml = "^6"
simple-term-menu = "0.4.4"
GitPython = "3.1.24"
[tool.poetry.dev-dependencies]
flake8 = "^3.8.2"
pylint = "^2.6.2"
black = "*"
isort = "^5"
pytest = "^6"
pytest-cov = "^3"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"