-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (41 loc) · 1.11 KB
/
pyproject.toml
File metadata and controls
44 lines (41 loc) · 1.11 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
[tool.poetry]
name = "marlware"
version = "0.2.0"
description = ""
authors = ["Sithael <james@marl.engineering>"]
license = "MIT license"
readme = "README.md"
packages = [{include = "src"}]
[tool.poetry.dependencies]
python = ">=3.9,<3.13"
numpy = "^1.14.1"
torch = "^2.0.1"
pettingzoo = "^1.23.1"
pyyaml = "^6.0.1"
pytest = "^7.4.0"
black = "^23.7.0"
poethepoet = "^0.21.1"
pre-commit = "^3.3.3"
click = "^8.1.6"
toml = "^0.10.2"
box2d-py = "^2.3.8"
pygame = "^2.5.0"
pysc2 = "^4.0.0"
protobuf = "3.20"
smac = {git = "https://github.com/oxwhirl/smac.git"}
mypy = "^1.5.1"
torchviz = "^0.0.2"
matplotlib = "^3.8.0"
tqdm = "^4.66.1"
hydra-core = "^1.3.2"
ray = {extras = ["data", "rllib", "serve", "train", "tune"], version = "^2.8.0"}
omegaconf = "^2.3.0"
hydra-colorlog = "^1.2.0"
scipy = "^1.11.3"
wandb = "^0.16.0"
smacv2 = {git = "https://github.com/Sithael/smacv2.git", branch = "dev"}
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poe.tasks]
force-cuda11 = "python -m pip install torch==1.12.0+cu113 torchvision==0.13.0+cu113 -f https://download.pytorch.org/whl/torch_stable.html"