-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
51 lines (47 loc) · 1.12 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
[build-system]
requires = ["setuptools>=61.2"]
build-backend = "setuptools.build_meta"
[project]
name = "gym_locm"
version = "1.4.0"
description = "OpenAI Gym environments for Legends of Code and Magic, a collectible card game designed for AI research"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.6"
keywords = ["reinforcement-learning", "collectible-card-games", "gym-environment", "legends-of-code-and-magic"]
authors = [{ name = "Ronaldo e Silva Vieira", email = "[email protected]" }]
dependencies = [
"gym",
"numpy",
"prettytable",
"pexpect",
"sty",
]
[project.optional-dependencies]
experiments = [
"numpy",
"scipy",
"hyperopt",
"pandas",
"matplotlib",
"scikit-learn",
"prince",
"stable_baselines3",
"sb3-contrib",
"wandb",
"tensorboard",
"torch",
]
legacy-experiments = [
"numpy",
"scipy",
"stable_baselines",
"hyperopt",
"pandas",
"matplotlib",
"scikit-learn",
]
[project.urls]
repository = "https://github.com/ronaldosvieira/gym-locm"
[project.scripts]
locm-runner = "gym_locm.toolbox.runner:run"