-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
41 lines (34 loc) · 894 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
[project]
authors = [{name = "carschandler", email = "[email protected]"}]
dependencies = [
"torchrl>=0.6.0,<0.7",
"tensordict>=0.6.1,<0.7",
"copier>=9.4.1",
]
description = "Add a short description here"
name = "rlsnake"
requires-python = "==3.10.15"
version = "0.1.0"
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling"]
[tool.pixi.project]
channels = ["conda-forge"]
platforms = ["linux-64", "osx-arm64", "win-64"]
[tool.pixi.pypi-dependencies]
snake = { path = "lib/snake", editable = true }
[tool.pixi.tasks]
[tool.pixi.dependencies]
ipython = ">=8.29.0,<9"
jupyter = ">=1.1.1,<2"
gymnasium = "<1.0.0"
numpy = ">=1.26.4,<2"
asciinema = ">=2.4.0,<3"
wandb = ">=0.18.7,<0.19"
dill = ">=0.3.9,<0.4"
tqdm = ">=4.67.1,<5"
[tool.pixi.feature.plotting.dependencies]
pandas = "*"
plotly = "*"
[tool.pixi.environments]
dev = ["plotting"]