-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
86 lines (77 loc) · 2.3 KB
/
pyproject.toml
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[build-system]
requires = ["setuptools >= 61.0", "wheel", "setuptools-git-versioning>=2.0,<3", ]
build-backend = "setuptools.build_meta"
[project]
name = "navground_learning"
dependencies = [
"gymnasium>=1.0.0",
"navground>=0.3.2",
"pettingzoo>=1.24.3",
]
requires-python = ">=3.10"
authors = [
{name = "Jerome Guzzi", email = "[email protected]"},
]
maintainers = [
{name = "Jerome Guzzi", email = "[email protected]"}
]
description = "A Python package that interfaces navground with gymnasium to learn navigating using IL and RL."
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["navigation", "navground", "gymnasium", "pettingzoo",
"imitation-learning", "reinforcement-learning"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Typing :: Typed"
]
dynamic = ["version"]
[project.optional-dependencies]
rl = [
"stable-baselines3>=2.4.0",
"SuperSuit>=3.9.3",
]
il = [
"imitation>=1.0.0",
"SuperSuit>=3.9.3",
]
inference = [
'onnxruntime>=1.20.0',
'onnx'
]
all = [
"navground[all]",
"pettingzoo>=1.24.3",
"SuperSuit>=3.9.3",
"stable-baselines3>=2.4.0",
"imitation>=1.0.0",
"onnxruntime",
"torch>=2.4",
"onnx",
"tqdm"
]
[project.urls]
Homepage = "https://github.com/idsia-robotics/navground_learning"
Documentation = "https://idsia-robotics.github.io/navground_learning"
Repository = "https://github.com/idsia-robotics/navground_learning.git"
"Bug Tracker" = "https://github.com/idsia-robotics/navground_learning/issues"
Changelog = "https://github.com/idsia-robotics/navground_learning/blob/main/CHANGELOG.md"
[project.scripts]
[tool.setuptools.packages.find]
where = ["src"]
[tool.distutils.bdist_wheel]
universal = true
[tool.setuptools-git-versioning]
enabled = true
# dirty_template = "{tag}-{ccount}+{branch}"
[project.entry-points.navground_behaviors]
policy = "navground.learning.behaviors.policy:PolicyBehavior"
[project.entry-points.navground_scenarios]
forward = "navground.learning.scenarios.forward:ForwardScenario"
corridor_with_obstacle = "navground.learning.scenarios.corridor_with_obstacle:CorridorWithObstacle"
[tool.mypy]
implicit_reexport = true
ignore_missing_imports = true