Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
eclipse
GitHub Repository: eclipse/sumo
Path: blob/main/build_config/pyproject/sumolib.toml
185785 views
1
[build-system]
2
requires = ["hatchling"]
3
build-backend = "hatchling.build"
4
5
[project]
6
name = "sumolib"
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 = "Python helper modules to read networks, parse output data and do other useful stuff related to the traffic simulation Eclipse SUMO"
11
readme = "build_config/pyproject/README_sumolib.md"
12
keywords = ["traffic", "simulation", "traci", "sumo"]
13
classifiers = [
14
"Development Status :: 5 - Production/Stable",
15
"Intended Audience :: Developers",
16
"Intended Audience :: Science/Research",
17
"Programming Language :: Python",
18
]
19
20
[project.urls]
21
Homepage = "https://sumo.dlr.de/"
22
Documentation = "https://sumo.dlr.de/docs/"
23
Repository = "https://github.com/eclipse-sumo/sumo"
24
Issues = "https://github.com/eclipse-sumo/sumo/issues"
25
Changelog = "https://sumo.dlr.de/docs/ChangeLog"
26
Download = "https://sumo.dlr.de/download"
27
28
[tool.hatch.build.targets.wheel]
29
packages = ["tools/sumolib"]
30
31
[tool.hatch.build.targets.sdist]
32
# ensure sdist matches wheel
33
include = [
34
"tools/sumolib/**",
35
"build_config/pyproject/README_sumolib.md",
36
"pyproject.toml"
37
]
38
39