-
Notifications
You must be signed in to change notification settings - Fork 120
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (29 loc) · 959 Bytes
/
pyproject.toml
File metadata and controls
34 lines (29 loc) · 959 Bytes
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
[project]
name = "sagemaker-sklearn-container"
version = "2.0"
description = "SageMaker Scikit-learn Container"
requires-python = "==3.12.*"
license = {text = "Apache-2.0"}
authors = [{name = "Amazon Web Services"}]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3.12",
]
dynamic = ["readme", "dependencies", "optional-dependencies"]
[project.scripts]
serve = "sagemaker_sklearn_container.serving:serving_entrypoint"
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
readme = {file = ["README.rst"]}
dependencies = {file = ["requirements.txt"]}
optional-dependencies.test = {file = ["test-requirements.txt"]}
[tool.setuptools.packages.find]
where = ["src"]
exclude = ["test*"]
[tool.setuptools.package-dir]
"" = "src"