-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
51 lines (44 loc) · 1.46 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
[build-system]
requires = ["setuptools>=42", "wheel", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
version_scheme = "guess-next-dev"
local_scheme = "dirty-tag"
[project]
name = "sageworks-bridges"
dynamic = ["version"]
description = "SageWorks Bridges: End User Application Bridges to SageWorks/AWS"
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.9"
keywords = ["SageMaker", "Machine Learning", "AWS", "Python", "Utilities"]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
]
authors = [{ name = "SuperCowPowers LLC", email = "[email protected]" }]
dependencies = [
"boto3 >= 1.28.76",
"botocore >= 1.31.76",
"awswrangler >= 3.4.0",
"sagemaker >= 2.143",
"requests >= 2.26.0"
]
[project.urls]
Homepage = "https://github.com/SuperCowPowers/sageworks-bridges"
[tool.setuptools]
package-dir = {"" = "src"}
packages = { find = { where = ["src"] } }
[tool.flake8]
max-line-length = 120
extend-ignore = ["E203"]
[tool.pytest.ini_options]
addopts = "-v --cov-report term-missing"
python_files = "*.py"
python_functions = "test"
norecursedirs = [".tox", ".git", "*.egg-info", "__pycache__", "dist", "build"]
markers = ["long: marks tests as long (deselect with '-m \"not long\"')"]