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