-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
50 lines (43 loc) · 1.14 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
[tool.poetry]
name = "metagame_balance"
version = "0.5.3"
description = "Fork of the pokemon vgc engine for a niantic-internal research project."
authors = []
license = "All rights reserved"
[tool.poetry.dependencies]
python = ">=3.8,<4.0"
numpy = "^1.23.3"
gym = ">=0.10.9"
PySimpleGUI = ">=4.20.0"
elo = "~=0.1.1"
arcade = "~=2.6.7"
cma = "~=3.2.2"
scipy = "^1.9.1"
matplotlib = "^3.6.0"
simple-plugin-loader = "^2.0"
torch = "1.10.2"
setuptools = "58"
tqdm = "^4.64.1"
gym-cool-game = {git = "https://github.com/Danielhp95/GGJ-2020-cool-game.git"}
regym = {git = "https://github.com/Danielhp95/Regym.git", branch="develop-improving-play-match-utils"}
gcsfs = "^2022.8.2"
[tool.poetry.group.dev.dependencies]
flameprof = "^0.4"
snakeviz = "^2.1.1"
py-spy = "^0.3.14"
mypy = "^0.981"
kfp = {extras = ["all"], version = "^1.8.14"}
ipython = "^8.5.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
main = "metagame_balance.main:main"
BalanceMeta = "metagame_balance.BalanceMeta:main"
[[tool.mypy.overrides]]
module = [
"matplotlib",
"tqdm",
"scipy.*"
]
ignore_missing_imports = true