-
Notifications
You must be signed in to change notification settings - Fork 149
/
pyproject.toml
41 lines (38 loc) · 1.11 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
[build-system]
requires = ["setuptools", "wheel", "numpy"]
[project]
name = "mushroom-rl"
dependencies = [
"numpy",
"scipy",
"scikit-learn",
"matplotlib",
"joblib",
"tqdm",
"pygame",
"opencv-python>=4.7",
"torch"
]
requires-python = ">=3.8"
authors = [
{ name="Carlo D'Eramo", email="carlo.deramo@gmail.com"},
{ name = "Davide Tateo", email = "davide@robot-learning.de" }
]
maintainers = [
{ name = "Davide Tateo", email = "davide@robot-learning.de" }
]
description = "A Python library for Reinforcement Learning experiments."
readme = "README.rst"
license = { file= "LICENSE" }
keywords = ["Reinforcement Learning", "Machine Learning", "Robotics"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dynamic = ["version", "optional-dependencies"]
[project.urls]
Homepage = "https://github.com/MushroomRL"
Documentation = "https://mushroomrl.readthedocs.io/en/latest/"
Repository = "https://github.com/MushroomRL/mushroom-rl"
Issues = "https://github.com/MushroomRL/mushroom-rl/issues"