-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
106 lines (94 loc) · 2.68 KB
/
pyproject.toml
File metadata and controls
106 lines (94 loc) · 2.68 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "OTAnalytics"
dynamic = ["version"]
authors = [
{ name = "OpenTrafficCam contributors", email = "team@opentrafficcam.org" },
{ name = "platomo GmbH", email = "info@platomo.de" },
]
description = "OTAnalytics is a core module of the OpenTrafficCam framework to perform traffic analysis on trajectories of road users."
readme = "README.md"
requires-python = "==3.12.*"
license = "GPL-3.0-only"
license-files = ["LICENSE"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
keywords = ["OpenTrafficCam", "Traffic Analysis", "Traffic Counting", "Trajectories"]
dependencies = [
"av==13.0.0",
"customtkinter==5.2.2",
"fastapi==0.128.0",
"ijson==3.3.0",
"matplotlib==3.10.0",
"more-itertools==10.7.0",
"nicegui==2.24.1",
"numpy==2.1.1",
"opencv-python-headless==4.10.0.84",
"openpyxl==3.1.5",
"pandas==2.3.3",
"pillow==11.1.0",
"polars==1.32.3",
"pyarrow==21.0.0",
"pywin32==310; sys_platform == 'win32'",
"requests==2.33.0",
"seaborn==0.13.2",
"shapely==2.0.7",
"starlette==0.49.1",
"tqdm==4.67.1",
"ujson==5.10.0",
"uvicorn==0.32.1",
]
[dependency-groups]
dev = [
"black==25.1.0",
"flake8==7.3.0",
"interrogate==1.7.0",
"isort==6.0.1",
"mypy==1.16.1",
"pandas-stubs==2.3.2.250926",
"pre-commit==4.1.0",
"playwright==1.55.0",
"pytest==8.3.4",
"pytest-asyncio==0.24.0",
"pytest-benchmark==5.1.0",
"pytest-cov==7.0.0",
"pytest-lazy-fixtures==1.4.0",
"pytest-playwright==0.7.1",
"pytest-timeout==2.4.0",
"PyYAML==6.0.2",
"selenium==4.40.0",
"twine==6.2.0",
"yamllint==1.35.1",
]
[project.urls]
Homepage = "https://opentrafficcam.org/"
Documentation = "https://opentrafficcam.org/overview/"
Repository = "https://github.com/OpenTrafficCam/OTAnalytics"
Issues = "https://github.com/OpenTrafficCam/OTAnalytics/issues"
Changelog = "https://github.com/OpenTrafficCam/OTAnalytics/releases"
[tool.uv]
default-groups = []
[tool.hatch.version]
path = "OTAnalytics/version.py"
[tool.hatch.build.targets.wheel]
packages = ["OTAnalytics"]
[tool.hatch.build]
directory = "dist"
[tool.black]
line-length = 88
[tool.isort]
profile = "black"
[tool.mypy]
ignore_missing_imports = true
ignore_missing_imports_per_module = true
disallow_untyped_defs = true
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
testpaths = ["tests/unit", "tests/acceptance", "tests/benchmark", "tests/regression"]