-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (37 loc) · 967 Bytes
/
pyproject.toml
File metadata and controls
39 lines (37 loc) · 967 Bytes
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
[build-system]
requires = ["setuptools>=80.9"]
build-backend = "setuptools.build_meta"
[project]
name = "rlforge"
version = "1.1.0"
authors = [
{ name="Alejandro Toro-Ossaba", email="alejotoro.o@gmail.com" },
]
description = "Reinforcement Learning for Everyone."
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
keywords = ["reinforcement learning", "machine learning"]
license = "MIT"
license-files = ["LICENSE*"]
dependencies = [
"numpy>=2.2.0",
"tqdm>=4.67.1",
"gymnasium>=1.2.2",
"matplotlib>=3.10.7",
]
[project.optional-dependencies]
torch = [
"torch>=2.9.0",
]
all = [
"torch>=2.9.0",
]
[project.urls]
"Homepage" = "https://github.com/alejotoro-o/rlforge"
"Documentation" = "https://rlforge.readthedocs.io/"
"Repository" = "https://github.com/alejotoro-o/rlforge"
"Bug Tracker" = "https://github.com/alejotoro-o/rlforge/issues"