-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (62 loc) · 1.36 KB
/
pyproject.toml
File metadata and controls
69 lines (62 loc) · 1.36 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
[build-system]
requires = ["hatchling>=1.24.0"]
build-backend = "hatchling.build"
[project]
name = "detect-lib"
version = "0.1.7"
description = "A modular video object detection toolkit with a clean det-v1 JSON schema, pluggable backends, and optional model export."
readme = "README.md"
authors = [
{ name = "Surya Chand Rayala", email = "suryachand2k1@gmail.com" }
]
license = { file = "LICENSE" }
requires-python = ">=3.11"
dependencies = [
"setuptools>=82.0.0",
"super-gradients>=1.7.5",
"tqdm>=4.67.3",
"ultralytics>=8.4.14",
]
[project.urls]
Repository = "https://github.com/Surya-Rayala/VideoPipeline-detection.git"
Issues = "https://github.com/Surya-Rayala/VideoPipeline-detection/issues"
[project.optional-dependencies]
export = [
"onnx>=1.20.1",
"onnxruntime>=1.24.1",
]
tf = [
"tensorflow>=2.20.0",
]
openvino = [
"openvino>=2025.4.1",
]
coreml = [
"coremltools>=9.0",
]
[dependency-groups]
dev = [
"mypy>=1.19.1",
"pytest>=9.0.2",
"ruff>=0.15.0",
]
[tool.hatch.build.targets.wheel]
include = [
"detect/**/*.py",
"detect/registry/*.json",
"detect/backends/**/registry.json",
]
exclude = [
"**/__pycache__/**",
"**/*.pyc",
"**/*.pyo",
"**/.DS_Store",
]
[tool.hatch.build.targets.sdist]
include = [
"detect/**/*.py",
"detect/registry/*.json",
"detect/backends/**/registry.json",
"README.md",
"LICENSE",
]