-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (30 loc) · 786 Bytes
/
pyproject.toml
File metadata and controls
33 lines (30 loc) · 786 Bytes
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
[tool.poetry]
name = "dreamer-pytorch"
version = "0.1.0"
description = ""
authors = ["Julius Frost <33183774+juliusfrost@users.noreply.github.com>"]
readme = "README.md"
packages = [
{include = "dreamer" },
{include = "rlpyt", from = "rlpyt"}
]
[tool.poetry.dependencies]
python = "~3.11"
torch = { url = "https://download.pytorch.org/whl/cpu/torch-2.0.0%2Bcpu-cp311-cp311-linux_x86_64.whl" }
opencv-python = "^4.8.0.74"
numpy = "^1.26.0"
psutil = "^5.9.5"
pyprind = "^2.11.3"
tqdm = "^4.66.1"
tensorboard = "^2.13.0"
moviepy = "^1.0.3"
atari-py = "^0.2.9"
dm-control = "^1.0.14"
gym = "^0.26.2"
[tool.poetry.group.dev.dependencies]
pytest = "^7.3.1"
black = "^23.9.1"
pre-commit = "^3.3.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"