-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
50 lines (41 loc) · 1.47 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
[build-system]
requires = ["hatchling", "hatch-requirements-txt"]
build-backend = "hatchling.build"
[project]
name = "OTAnalytics"
dynamic = ["dependencies", "version"]
authors = [
{ name="OpenTrafficCam contributors", email="[email protected]" },
{ name="platomo GmbH", email="[email protected]" },
]
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.11"
license-files = { paths = ["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"]
[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.hatch.metadata.hooks.requirements_txt]
files = ["requirements.txt"]
[tool.hatch.version]
path = "OTAnalytics/version.py"
[tool.hatch.build.targets.wheel]
packages = ["OTAnalytics"]
[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