-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
92 lines (80 loc) · 2.67 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[build-system]
requires = ["setuptools", "ruff"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["omega_prime", "omega_prime.asam_odr", "omega_prime.asam_odr.opendriveconverter", "omega_prime.asam_odr.opendriveconverter.elements", "omega_prime.asam_odr.opendriveparser", "omega_prime.asam_odr.opendriveparser.elements"]
[project]
name = "omega-prime"
authors = [
{name = "ika - RWTH Aachen", email = "[email protected]"},
]
description = "Omega-Prime: Data Model, Data Format and Python Library for Handling Ground Truth Traffic Data"
readme = "README.md"
license = {text = "MPL-2.0"}
requires-python = ">=3.10"
keywords = ["omega-format", "osi", "open-simulation-interface", "simulation", "automated-driving", "traffic"]
classifiers = [
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
'shapely',
'pandas',
'scipy',
'numpy',
'typer',
'pandera',
'lxml',
'matplotlib',
'StrEnum',
'networkx',
'xarray',
'pyproj',
'betterosi>=0.3.3',
]
version = "0.1.2"
[project.urls]
Homepage = "https://github.com/ika-rwth-aachen/omega-prime"
Repository = "https://github.com/ika-rwth-aachen/omega-prime"
[project.optional-dependencies]
test = ['ruff', 'pdoc3', 'pytest', 'pytest-sugar', 'pytest-env','pytest-cov','pytest-progress','pytest-codeblocks', 'nbval','ipywidgets']
[project.scripts]
omega-prime = "omega_prime.cli:app"
[tool.ruff]
lint.ignore = ["E741", "E701", "E501"]
target-version = "py311"
line-length = 120
lint.select = [
"F401", # Unused imports
"F841", # Unused local variables
"F821", # Undefined names
"E501", # Line length violations
"SIM101", # Simplify unnecessary if-else blocks
"SIM102", # Simplify return or yield statements
"SIM103", # Simplify list/set/dict comprehensions
"UP",
"I",
]
lint.isort.combine-as-imports = true
[tool.licensecheck]
# run `pip install licensecheck` and `licensecheck`
using = "PEP631"
ignore_licenses = ["mpl"]
ignore_packages = [
"tzdata", "types-python-dateutil", "xarray", "multidict"# APACHE SOFTWARE LICENSE
]
zero = true
[tool.pytest.ini_options]
addopts = "-ra --junitxml=report.xml --nbval --codeblocks"
testpaths = [
"tests",
"tutorial.ipynb",
"README.md"
]
log_cli = true