forked from ika-rwth-aachen/betterosi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (60 loc) · 2.01 KB
/
pyproject.toml
File metadata and controls
71 lines (60 loc) · 2.01 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
[build-system]
requires = ["hatchling", "hatch-build-scripts", "betterproto2_compiler", "ruff","grpcio-tools"]
build-backend = "hatchling.build"
[tool.uv.extra-build-dependencies]
betterosi = [{requirement = "betterproto2_compiler", match-runtime=true}]
[tool.setuptools.packages.find]
include = ["betterosi*"]
namespaces = false
[project]
name = "betterosi"
authors = [
{name = "ika - RWTH Aachen", email = "michael.schuldes@ika.rwth-aachen.de"},
]
description = "betterosi - a python library for reading and writing open-simulation-interface files using betterproto2"
readme = "README.md"
license = {text="MPL-2.0"}
requires-python = ">=3.10"
keywords = ["osi", "open-simulation-interface", "simulation", "automated-driving"]
classifiers = [
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
]
dependencies = [
'betterproto2[all]',
'betterproto2_compiler',
'betterproto2-rust-codec',
'mcap',
'mcap-protobuf-support',
'matplotlib',
'numpy',
'typer',
'tqdm'
]
version = "0.8.4"
[project.optional-dependencies]
test = ['ruff', 'pre-commit', 'pytest', 'pytest-sugar', 'pytest-env','pytest-cov','pytest-progress','pytest-codeblocks']
[project.urls]
Homepage = "https://github.com/ika-rwth-aachen/betterosi"
Repository = "https://github.com/ika-rwth-aachen/betterosi"
[[tool.hatch.build.hooks.build-scripts.scripts]]
commands = [
"python gen_protos.py"
]
artifacts = [
]
[project.scripts]
betterosi-viewer = "betterosi.viewer:main"
betterosi-to-mcap = "betterosi.osi2mcap:app"
[tool.ruff]
lint.ignore = ["E741", "E701"]
[tool.pytest.ini_options]
addopts = "--codeblocks --cov=betterosi --cov-report=xml --cov-report=html --cov-report=term-missing"
testpaths = [
"README.md"
]
log_cli = true