-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
pyproject.toml
91 lines (81 loc) · 2.09 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "sagemaker"
dynamic = ["version", "optional-dependencies"]
description = "Open source library for training and deploying models on Amazon SageMaker."
readme = "README.rst"
requires-python = ">=3.8"
authors = [
{ name = "Amazon Web Services" },
]
keywords = [
"AI",
"AWS",
"Amazon",
"ML",
"MXNet",
"Tensorflow",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"attrs>=23.1.0,<24",
"boto3>=1.34.142,<2.0",
"cloudpickle==2.2.1",
"docker",
"google-pasta",
"importlib-metadata>=1.4.0,<7.0",
"jsonschema",
"numpy>=1.9.0,<2.0",
"packaging>=20.0",
"pandas",
"pathos",
"platformdirs",
"protobuf>=3.12,<5.0",
"psutil",
"PyYAML~=6.0",
"requests",
"sagemaker-core>=1.0.0,<2.0.0",
"schema",
"smdebug_rulesconfig==1.0.1",
"tblib>=1.7.0,<4",
"tqdm",
"urllib3>=1.26.8,<3.0.0",
]
[project.scripts]
sagemaker-upgrade-v2 = "sagemaker.cli.compatibility.v2.sagemaker_upgrade_v2:main"
[project.urls]
Homepage = "https://github.com/aws/sagemaker-python-sdk"
[tool.hatch.version]
path = "VERSION"
pattern = "(?P<version>.+)"
# Dynamically define optional dependencies from requirements.txt files so
# they can be be tracked by Dependabot
[tool.hatch.metadata.hooks.custom]
[tool.hatch.build.targets.wheel]
packages = ["src/sagemaker"]
exclude = ["src/sagemaker/serve/model_server/triton/pack_conda_env.sh"]
[tool.hatch.build.targets.wheel.shared-scripts]
"src/sagemaker/serve/model_server/triton/pack_conda_env.sh" = "pack_conda_env.sh"
[tool.hatch.build.targets.sdist]
only-include = [
"/requirements/extras",
"/src",
"/VERSION",
]
[tool.pytest.ini_options]
addopts = ["-vv"]
testpaths = ["tests"]
[tool.black]
line-length = 100