Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
eclipse
GitHub Repository: eclipse/sumo
Path: blob/main/build_config/pyproject/sumo-data.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 = "sumo-data"
7
version = "0.0.0"
8
authors = [{name = "DLR and contributors", email = "[email protected]"}]
9
license = "EPL-2.0 OR GPL-2.0-or-later"
10
description = "The python ABI version indpendent part of the traffic simulation Eclipse SUMO"
11
readme = "README.md"
12
keywords = ["traffic", "simulation", "traci"]
13
classifiers = [
14
"Development Status :: 5 - Production/Stable",
15
"Intended Audience :: Developers",
16
"Intended Audience :: Science/Research",
17
]
18
19
[project.urls]
20
Homepage = "https://sumo.dlr.de/"
21
Documentation = "https://sumo.dlr.de/docs/"
22
Repository = "https://github.com/eclipse-sumo/sumo"
23
Issues = "https://github.com/eclipse-sumo/sumo/issues"
24
Changelog = "https://sumo.dlr.de/docs/ChangeLog"
25
Download = "https://sumo.dlr.de/download"
26
27
[tool.scikit-build]
28
build-dir = "_skbuild"
29
build.targets = ["install_mo", "install_dll"]
30
install.components = ["data", "dll"]
31
wheel.install-dir = "sumo"
32
wheel.py-api = "py3"
33
34
[tool.cibuildwheel]
35
before-all = "build_config/install_dependencies.sh"
36
build = ["cp312*manylinux_x86_64", "cp312*manylinux_aarch64", "cp312-win_amd64", "cp312-macosx_arm64"]
37
38
[tool.cibuildwheel.windows]
39
before-all = ""
40
41