Skip to content

Commit 5f08859

Browse files
fix toml poetry dependency
1 parent 9619d2a commit 5f08859

File tree

1 file changed

+12
-17
lines changed

1 file changed

+12
-17
lines changed

python/pyproject.toml

Lines changed: 12 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,26 @@
1-
[project]
1+
[tool.poetry]
22
name = "model-hosting-container-standards"
33
version = "0.1.6"
44
description = "Python toolkit for standardized model hosting container implementations with Amazon SageMaker integration"
5-
authors = [
6-
{name = "Amazon Web Services"}
7-
]
5+
authors = ["Amazon Web Services"]
86
readme = "README.md"
97
license = "Apache-2.0"
10-
requires-python = ">=3.10"
11-
dependencies = [
12-
"fastapi",
13-
"starlette>=0.49.1",
14-
"pydantic",
15-
"jmespath",
16-
"httpx",
17-
"setuptools",
18-
"supervisor>=4.2.0",
19-
]
20-
21-
[tool.poetry]
228
packages = [{include = "model_hosting_container_standards"}]
23-
249
# Include supervisor scripts in the package
2510
include = [
2611
"model_hosting_container_standards/supervisor/scripts/*",
2712
]
2813

14+
[tool.poetry.dependencies]
15+
python = ">=3.10"
16+
fastapi = "*"
17+
starlette = ">=0.49.1"
18+
pydantic = "*"
19+
jmespath = "*"
20+
httpx = "*"
21+
setuptools = "*"
22+
supervisor = ">=4.2.0"
23+
2924
# Console scripts for easy access
3025
[tool.poetry.scripts]
3126
generate-supervisor-config = "model_hosting_container_standards.supervisor.scripts.generate_supervisor_config:main"

0 commit comments

Comments
 (0)