-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (47 loc) · 1.34 KB
/
pyproject.toml
File metadata and controls
52 lines (47 loc) · 1.34 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "routerl"
version = "1.0.1"
description = "RouteRL is a multi-agent reinforcement learning framework for urban route choice in different city networks."
authors = [
{ name = "COeXISTENCE", email = "coexistence@uj.edu.pl" }
]
readme = "README.md"
license = { text = "MIT License" }
keywords = ["routing", "marl", "transportation", "rl", "autonomous", "vehicles", "traffic"]
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"gymnasium==1.0.0",
"janux>=1.0.0",
"matplotlib>=3.9.3",
"numpy>=2.0.2",
"pandas>=2.2.3",
"pettingzoo==1.24.3",
"polars==1.27.1",
"prettytable>=3.12.0",
"requests>=2.32.0",
"seaborn>=0.13.2",
"tensordict==0.7.0",
"torch>=2.6.0",
"torchrl==0.7.0",
"tqdm>=4.67.1",
"traci==1.21.0"
]
[tool.setuptools.package-data]
"*" = ["*.json", "*.xml", "*.sumocfg"]
[project.urls]
repository = "https://github.com/COeXISTENCE-PROJECT/RouteRL"
"Bug Report" = "https://github.com/COeXISTENCE-PROJECT/RouteRL/issues"
[tool.setuptools.packages.find]
include = ["routerl", "routerl.*"]
[project.optional-dependencies]
dev = [
"pytest>=8.3.4",
]