-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
52 lines (47 loc) · 1.38 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
[build-system]
requires = ["setuptools>=64"]
build-backend = "setuptools.build_meta"
[project]
name = "sagemaker-core"
dynamic = ["version"]
description = "An python package for sagemaker core functionalities"
authors = [
{name = "AWS", email = "[email protected]"}
]
readme = "README.rst"
dependencies = [
# Add your dependencies here (Include lower and upper bounds as applicable)
"boto3>=1.34.0,<2.0.0",
"pydantic>=1.7.0,<3.0.0",
"PyYAML>=6.0, <7.0",
"jsonschema<5.0.0",
"platformdirs>=4.0.0, <5.0.0",
"rich>=13.0.0, <14.0.0",
"mock>4.0, <5.0",
"importlib-metadata<7.0,>=1.4.0",
]
requires-python = ">=3.8"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[project.optional-dependencies]
codegen = [
"black>=24.3.0, <25.0.0",
"pandas>=2.0.0, <3.0.0",
"pytest>=8.0.0, <9.0.0",
"pylint>=3.0.0, <4.0.0"
]
[project.urls]
Repository = "https://github.com/aws/sagemaker-core.git"
[tool.black]
line-length = 100
exclude = '\.ipynb$'
[tool.setuptools.dynamic]
version = { attr = "sagemaker_core._version.__version__"}