-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (64 loc) · 2.11 KB
/
Copy pathpyproject.toml
File metadata and controls
72 lines (64 loc) · 2.11 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>=77.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "edge-traffic-vision"
version = "0.1.0"
description = "Edge-oriented traffic sign and road-object detection system."
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
requires-python = ">=3.12,<3.13"
authors = [
{ name = "Nafiz Noyon" }
]
keywords = [
"computer-vision",
"object-detection",
"edge-ai",
"traffic-sign-detection",
"onnx",
"tensorrt"
]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence"
]
dependencies = [
"torch>=2.13,<2.14",
"torchvision>=0.28,<0.29",
"ultralytics==8.4.112",
"opencv-python>=5.0,<6.0",
"numpy>=2.4,<3.0",
"pandas>=2.3,<3.0",
"PyYAML>=6.0,<7.0",
"onnx>=1.22,<2.0",
"onnxruntime>=1.28,<2.0"
]
[project.urls]
Homepage = "https://github.com/NafizNoyon/edge-traffic-vision"
Repository = "https://github.com/NafizNoyon/edge-traffic-vision"
Issues = "https://github.com/NafizNoyon/edge-traffic-vision/issues"
Documentation = "https://github.com/NafizNoyon/edge-traffic-vision/tree/main/docs"
[project.scripts]
edge-traffic-ingest = "edge_traffic_vision.data.ingestion_cli:main"
edge-traffic-baseline = "edge_traffic_vision.inference.baseline:main"
edge-traffic-video = "edge_traffic_vision.inference.video:main"
edge-traffic-benchmark = "edge_traffic_vision.evaluation.benchmark:main"
edge-traffic-dataset-check = "edge_traffic_vision.data.cli:main"
edge-traffic-train = "edge_traffic_vision.training_cli:main"
edge-traffic-export-onnx = "edge_traffic_vision.optimization.onnx_export:main"
edge-traffic-backend-benchmark = "edge_traffic_vision.evaluation.backend_benchmark:main"
edge-traffic-robustness = "edge_traffic_vision.evaluation.robustness:main"
[tool.setuptools]
package-dir = { "" = "src" }
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["tests"]
[tool.ruff]
line-length = 100
target-version = "py312"