-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
45 lines (40 loc) · 968 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
40
41
42
43
44
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = 'rl_sandbox'
version = "0.1.0"
description = 'Sandbox for my RL experiments'
authors = ['Roman Milishchuk <milishchuk.roman@gmail.com>']
packages = [{include = 'rl_sandbox'}]
# add config directory as package data
# TODO: add yapf and isort as development dependencies
[tool.poetry.dependencies]
python = "^3.10"
numpy = '*'
nptyping = '*'
gym = "0.25.0" # crafter requires old step api
pygame = '*'
moviepy = '*'
torchvision = '*'
torch = '^2.0'
tensorboard = '^2.0'
dm-control = '^1.0.0'
unpackable = '^0.0.4'
hydra-core = "^1.2.0"
matplotlib = "^3.0.0"
webdataset = "^0.2.20"
jaxtyping = '^0.2.0'
lovely_tensors = '^0.1.10'
torchshow = '^0.5.0'
crafter = '^1.8.0'
wandb = '*'
flatten-dict = '*'
hydra-joblib-launcher = "*"
[tool.yapf]
based_on_style = "pep8"
column_limit = 90
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]