-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
119 lines (112 loc) · 2.94 KB
/
pyproject.toml
File metadata and controls
119 lines (112 loc) · 2.94 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
[[tool.uv.index]]
name = "testpypi"
url = "https://test.pypi.org/simple/"
publish-url = "https://test.pypi.org/legacy/"
explicit = true
[[tool.pdm.source]]
name = "torchcpu"
url = "https://download.pytorch.org/whl/cpu"
verify_ssl = true
[[tool.pdm.source]]
name = "torch_cuda121"
url = "https://download.pytorch.org/whl/cu121"
verify_ssl = true
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[[tool.uv.dependency-metadata]]
name = "yolox"
version = "0.3.0"
requires-dist = ["onnx>=1.17.0", "onnxsim<1.0.0,>=0.4.36"]
[tool.uv]
no-build-isolation-package = ["yolox"]
[tool.flake8]
max-line-length = 120
exclude = [".tox", "*.egg", "build", "temp"]
select = ["E", "W", "F"]
doctests = true
verbose = 2
format = "pylint"
ignore = ["E731", "F405", "E402", "W504", "W605", "E741"]
[project]
authors = [
{name = "Mikel Broström"},
]
license = {text = "AGPL-3.0"}
requires-python = ">=3.10,<4.0"
dependencies = [
"setuptools>=78.0.0",
"filterpy<2.0.0,>=1.4.5",
"gdown<6.0.0,>=4.7.1",
"lapx<1.0.0,>=0.5.5",
"loguru<1.0.0,>=0.7.2",
"numpy==1.26.4",
"pyyaml<7.0.0,>=6.0.1",
"regex<2025.0.0,>=2024.0.0",
"yacs<1.0.0,>=0.1.8",
"scikit-learn<2.0.0,>=1.3.0",
"pandas<3.0.0,>=2.0.0",
"opencv-python<5.0.0,>=4.7.0",
"ftfy<7.0.0,>=6.1.3",
"gitpython<4.0.0,>=3.1.42",
"torch == 1.13.1",
"torchvision == 0.14.1"
]
name = "boxmot"
version = "12.0.6"
description = "BoxMOT: pluggable SOTA tracking modules for segmentation, object detection and pose estimation models"
readme = "README.md"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Image Recognition",
"Topic :: Scientific/Engineering :: Image Processing",
]
keywords = [
"tracking",
"tracking-by-detection",
"machine-learning",
"deep-learning",
"vision",
"ML",
"DL",
"AI",
"YOLO",
]
[dependency-groups]
test = [
"pytest<9.0.0,>=8.0.2",
"isort<6.0.0,>=5.13.2",
"pytest-cov<7.0.0,>=6.0.0",
]
yolo = [
"ultralytics @ git+https://github.com/mikel-brostrom/ultralytics.git",
]
export = [
"onnx<2.0.0,>=1.17.0",
"onnxsim<1.0.0,>=0.4.36",
"openvino-dev<2025.0,>=2023.3",
]
evolve = [
"ray<3.0.0,>=2.35.0",
"plotly<6.0.0,>=5.19.0",
"joblib<2.0.0,>=1.3.2",
]
dev = [
"ipykernel<7.0.0,>=6.29.5",
]
yolox-build-deps = [
"setuptools>=78.0.0",
"torch<3.0.0,>=2.2.1",
]