-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
67 lines (63 loc) · 1.21 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[tool.poetry]
name = "aiarena-docker"
version = "0.1.0"
description = ""
authors = ["AI Arena <staff@aiarena.net>"]
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
aiohttp = "*"
aiohttp-jinja2 = "*"
attrs = "*"
burnysc2 = ">=7.0.1"
certifi = "*"
future = "*"
gym = "*"
h5py = "*"
imutils = "*"
jinja2 = "*"
loguru = "*"
more-itertools = "*"
multidict = "*"
numpy = "*"
opencv-contrib-python = "*"
opencv-python = "*"
pandas = "*"
pipenv = "*"
portpicker = "*"
protobuf = "*"
psutil = "*"
pyglet = "*"
pydantic = "*"
pygame = "*"
pysc2 = "*"
pyyaml = "*"
python-utils = "*"
requests = "*"
s2clientprotocol = "*"
scikit-image = "*"
scikit-learn = "*"
scipy = "*"
six = "*"
sqlalchemy = "*"
stable-baselines3 = "*"
tensorflow-cpu = ">=2.14.1"
termcolor = "*"
torch = {version = "*", source = "torch-cpu"}
torch-optimizer = "*"
torchvision = {version = "*", source = "torch-cpu"}
tqdm = "*"
urllib3 = "*"
uvloop = "*"
virtualenv = "*"
virtualenv-clone = "*"
websockets = "*"
yarl = "*"
[tool.poetry.group.dev.dependencies]
black = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[[tool.poetry.source]]
name = "torch-cpu"
url = "https://download.pytorch.org/whl/cpu"
priority = "explicit"