Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
eclipse
GitHub Repository: eclipse/sumo
Path: blob/main/build_config/pyproject/libsumo.toml
185785 views
1
[build-system]
2
requires = ["scikit-build-core>=0.10"]
3
build-backend = "scikit_build_core.build"
4
5
[project]
6
name = "libsumo"
7
version = "0.0.0"
8
dependencies = ["traci>=0.0.0", "sumo-data>=0.0.0"]
9
authors = [{name = "DLR and contributors", email = "[email protected]"}]
10
license = "EPL-2.0 OR GPL-2.0-or-later"
11
description = "The python version of the libsumo API to communicate with the traffic simulation Eclipse SUMO"
12
readme = "README.md"
13
keywords = ["traffic", "simulation", "traci"]
14
classifiers = [
15
"Development Status :: 5 - Production/Stable",
16
"Intended Audience :: Developers",
17
"Intended Audience :: Science/Research",
18
"Programming Language :: C++",
19
"Programming Language :: Python",
20
]
21
22
[project.urls]
23
Homepage = "https://sumo.dlr.de/"
24
Documentation = "https://sumo.dlr.de/docs/Libsumo.html"
25
Repository = "https://github.com/eclipse-sumo/sumo"
26
Issues = "https://github.com/eclipse-sumo/sumo/issues"
27
Changelog = "https://sumo.dlr.de/docs/ChangeLog"
28
Download = "https://sumo.dlr.de/download"
29
30
[tool.scikit-build]
31
build-dir = "_skbuild"
32
build.targets = ["libsumo"]
33
install.components = ["tools_libsumo"]
34
wheel.packages = ["tools/libsumo"]
35
36
[tool.cibuildwheel]
37
before-all = "build_config/install_dependencies.sh"
38
build = ["cp*manylinux_x86_64", "cp*manylinux_aarch64", "cp*-win_amd64", "cp*-macosx_arm64"]
39
40
[tool.cibuildwheel.windows]
41
before-all = ""
42
43