-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
27 lines (26 loc) · 1.13 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
[build-system]
requires = ["setuptools >= 61.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "experiments-benchmark-envs"
description = "Training and evaluation scripts for Gymnasium-Planar-Robotics benchmark environments"
readme = "README.md"
requires-python = ">= 3.11"
authors = [{ name = "Lara Bergmann", email = "[email protected]" }]
keywords = ["Reinforcement Learning Algorithms", "Reinforcement Learning", "Gymnasium", "Gym", "AI", "Machine Learning"]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
]
dependencies = [
"gymnasium-planar-robotics @ git+ssh://[email protected]/ubi-coro/gymnasium-planar-robotics.git",
"stable-baselines3-extensions @ git+ssh://[email protected]/ubi-coro/stable-baselines3-extensions.git",
"hydra-zen",
"beartype" # type-checking
]
dynamic = ["version"]