-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (35 loc) · 1.3 KB
/
Copy pathpyproject.toml
File metadata and controls
37 lines (35 loc) · 1.3 KB
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
36
37
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling"]
[project]
name = "sumo-experiments"
version = "5.8.3"
authors = [
{ name="Jules Bompard", email="jules.bompard.etu@univ-lille.fr" },
{ name="Antoine Nongaillard", email="antoine.nongaillard@univ-lille.fr"},
{ name="Philippe Mathieu", email="philippe.mathieu@univ-lille.fr"},
]
description = "The sumo-experiments library implements a python interface for the Simulation of Urban MObility (SUMO) software."
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)",
"Development Status :: 3 - Alpha",
"Environment :: X11 Applications :: Gnome",
"Operating System :: POSIX :: Linux",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator",
]
dependencies = [
"numpy >= 1.26.0, < 3",
"pandas >= 2.1.1, < 3",
"traci >= 1.18.0, < 2",
"libsumo >= 1.24.0, < 2",
"networkx >= 3.3, < 4",
"torch >= 2.9.0, < 3"
]
[project.urls]
"Homepage" = "https://github.com/cristal-smac/sumo-experiments"
"Bug Tracker" = "https://github.com/cristal-smac/sumo-experiments/issues"