-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (64 loc) · 1.8 KB
/
pyproject.toml
File metadata and controls
72 lines (64 loc) · 1.8 KB
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
[build-system]
requires = ["setuptools>=64", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "deepracer-utils"
dynamic = ["version"]
description = "A set of tools for working with DeepRacer training"
readme = { file = "README.md", content-type = "text/markdown" }
license = "MIT-0"
requires-python = ">=3.9"
authors = [{ name = "AWS DeepRacer Community" }]
keywords = ["aws", "deepracer", "awsdeepracer"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Internet :: Log Analysis",
]
dependencies = [
"boto3>=1.26.0",
"python-dateutil>=2.1,<3.0.0",
"numpy>=1.21.0",
"shapely>=2.0.0",
"matplotlib>=3.5.0",
"pandas>=1.3.0",
"scikit-learn>=1.0.0",
"joblib>=1.0.0",
"Pillow",
]
[project.optional-dependencies]
visualization = [
"tensorflow>=2.10.0",
"opencv-python-headless",
]
dev = [
"check-manifest",
"black",
"setuptools-scm>=8",
]
test = [
"tensorflow>=2.10.0",
"coverage",
"opencv-python-headless",
"Pillow",
"pytest>=7.0.0",
"ipython",
"ipywidgets",
]
[project.urls]
"Bug Reports" = "https://github.com/aws-deepracer-community/deepracer-utils/issues"
"Source" = "https://github.com/aws-deepracer-community/deepracer-utils/"
[tool.setuptools.packages.find]
include = ["deepracer", "deepracer.*"]
[tool.setuptools_scm]
tag_regex = "^deepracer-utils-(?P<version>[vV]?[\\d]+(?:\\.[\\d]+)*(?:[._-]?[\\w]+)*)$"
[tool.pytest.ini_options]
filterwarnings = ["ignore::DeprecationWarning:tensorflow.*"]
[tool.black]
target-version = ["py310", "py312"]
line-length = 100
[tool.pylint.main]
ignore-paths = ["tests"]