forked from tryolabs/norfair
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
69 lines (63 loc) · 1.86 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[tool.poetry]
name = "norfair"
version = "2.2.0"
description = "Lightweight Python library for adding real-time multi-object tracking to any detector."
license = "BSD-3-Clause"
authors = ["Tryolabs <[email protected]>"]
repository = "https://github.com/tryolabs/norfair"
readme = "README.md"
keywords = [
"tracking",
"object-detection",
"object-tracking",
"kalman-filter",
"pose-estimation",
"re-identification",
"multi-object-tracking",
"re-id",
"tracking-algorithm",
"deepsort",
"video-tracking",
"video-inference-loop"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Image Recognition",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries",
"Topic :: Multimedia :: Video"
]
[tool.poetry.dependencies]
python = "^3.7"
filterpy = "^1.4.5"
rich = ">=9.10.0, <13.0.0"
scipy = ">=1.5.4"
numpy = [
{version = "^1.19.0", python = "<3.8"},
{version = "^1.23.0", python = ">=3.8"}
]
opencv-python = { version = ">= 3.2.0, < 5.0.0", optional = true }
motmetrics = { version = "1.4.0", optional = true }
importlib-metadata = { version = "4.8.3", python = "<3.8" }
[tool.poetry.extras]
metrics = ["motmetrics"]
video = ["opencv-python"]
[tool.poetry.group.test.dependencies]
pylint = "^2.12.0"
pytest = "^6.2.5"
tox = "^3.26.0"
[tool.poetry.group.dev.dependencies]
black = "^22.12.0"
isort = "^5.10.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
multi_line_output = 3