-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (56 loc) · 1.75 KB
/
Copy pathpyproject.toml
File metadata and controls
60 lines (56 loc) · 1.75 KB
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
[project]
name = "pokemon-red-ai"
version = "0.2.0"
description = "Reinforcement learning for Pokemon Red — research toolkit and paper-grade experimental harness."
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.10"
authors = [
{ name = "Alan Chester", email = "amcheste@gmail.com" },
]
keywords = [
"reinforcement-learning",
"pokemon",
"pyboy",
"stable-baselines3",
"research",
"rl-benchmark",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
[project.urls]
Homepage = "https://github.com/amcheste/pokemon-red-ai"
Repository = "https://github.com/amcheste/pokemon-red-ai"
Issues = "https://github.com/amcheste/pokemon-red-ai/issues"
[project.optional-dependencies]
# Install with: pip install -e ".[dashboard]"
# Only needed to run ``scripts/monitor.py`` — training itself does not
# depend on Streamlit.
dashboard = [
"streamlit>=1.28",
]
[project.scripts]
pokemon-ai = "pokemon_red_ai.cli.commands:main"
[tool.pytest.ini_options]
filterwarnings = [
"ignore::UserWarning:sdl2._internal",
]
testpaths = ["tests"]
addopts = [
"--strict-markers",
"-ra",
]
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
"integration: marks tests that require a real ROM or PyBoy session",
"paper: marks tests that validate paper-relevant invariants (eval harness, seeding, reward determinism)",
]