-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (43 loc) · 1.19 KB
/
pyproject.toml
File metadata and controls
47 lines (43 loc) · 1.19 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "metamon"
version = "1.5.1"
description = "Baselines and Datasets for Pokémon Showdown RL"
readme = { file = "README.md", content-type = "text/markdown" }
authors = [
{ name = "Jake Grigsby", email = "grigsby@cs.utexas.edu" }
]
license = "MIT"
license-files = ["LICENSE"]
requires-python = ">=3.10"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Games/Entertainment",
]
keywords = ["pokemon", "reinforcement-learning", "machine-learning"]
dependencies = [
"gymnasium>=0.26,<=0.29.1",
"torch>=2.6",
"numpy",
"gin-config",
"wandb",
"einops",
"tqdm",
"lz4",
"termcolor",
"huggingface_hub",
"datasets",
"ratarmountcore",
"poke-env @ git+https://github.com/UT-Austin-RPL/poke-env.git",
"amago @ git+https://github.com/UT-Austin-RPL/amago.git@v3.1"
]
[project.urls]
Homepage = "https://metamon.tech"
Repository = "https://github.com/UT-Austin-RPL/metamon"
[tool.setuptools.packages.find]
include = ["metamon*"]