-
Notifications
You must be signed in to change notification settings - Fork 126
/
pyproject.toml
35 lines (31 loc) · 970 Bytes
/
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
[build-system]
requires = [
"setuptools",
"wheel",
"protoc-wheel-0==24.4",
]
build-backend = "setuptools.build_meta"
[project]
name = "open-simulation-interface"
description = "ASAM Open Simulation Interface Python Bindings."
authors = [
{name = "ASAM Open Simulation Interface Project", email = "[email protected]"},
]
maintainers = [
{name = "ASAM Open Simulation Interface Project", email = "[email protected]"},
]
dependencies = [
"protobuf>=4.24.4",
]
license = {file = "LICENSE"}
readme = "README.md"
classifiers = [
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/OpenSimulationInterface/open-simulation-interface"
Repository = "https://github.com/OpenSimulationInterface/open-simulation-interface.git"
"Bug Tracker" = "https://github.com/OpenSimulationInterface/open-simulation-interface/issues"
[project.scripts]
osi2read = "osi3trace.osi2read:main"