-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
39 lines (34 loc) · 833 Bytes
/
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
[tool.poetry]
name = "optimality-of-decentralization"
version = "0.1.0"
description = ""
authors = ["Prateek Bhustali <p.bhustali@tudelft.nl>"]
readme = "README.md"
packages = [{ include = "imprl", from = "imprl/src" }]
[tool.poetry.dependencies]
python="~3.9"
numpy="^1.26.2"
scipy="^1.12.0"
torch="~2.2.1"
pyyaml="~6.0.1"
gym="^0.23.1"
notebook="^7.1.2"
rliable="~1.0.8"
"ruamel.yaml"="~0.18.6"
[tool.poetry.group.logging]
optional = false
[tool.poetry.group.logging.dependencies]
wandb="~0.16.4"
[tool.poetry.group.visualisation]
optional = false
[tool.poetry.group.visualisation.dependencies]
matplotlib="^3.8.2"
seaborn="^0.13.2"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
pytest="~8.0.1"
black="^24.3.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"