-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
53 lines (47 loc) · 1.19 KB
/
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
45
46
47
48
49
50
51
52
53
[tool.poetry]
name = "av-agents"
version = "0.1.0"
description = ""
authors = [
"Michael Walters <[email protected]>",
]
readme = "README.md"
license = "MIT"
packages = [
{include = "sim", from = "src"},
]
# Dependencies
# Remember to 'poetry update' after changing
[tool.poetry.dependencies]
# python = ">=3.12,<3.13" # pytensor has a restrictive range
python = ">=3.10,<3.13"
numpy = "^1.26.4"
scikit-learn = "^1.4.1"
pytensor = "^2.20.0"
pymc = "^5.13.1"
diffrax = "^0.5.0"
arviz = "^0.18.0"
namedtupled = "^0.3.3"
jax = {extras = ["cpu"], version = "^0.4.26"}
hydra-core = "^1.3.2"
highway-env = "^1.8.2"
tqdm = "^4.66.5"
moviepy = "^1.0.3"
gymnasium = "^0.29.1"
[tool.poetry.dev-dependencies]
notebook = "*"
jupyterlab = "*"
matplotlib = "*"
seaborn = "*"
[tool.poetry.extras]
cuda = [
# The line below is an example; change for your system
#torch = { url = "https://download.pytorch.org/whl/cu113/torch-1.10.0+cu113-cp38-cp38-linux_x86_64.whl" }
]
# Register our custom envs
[tool.poetry.plugins."gymnasium.envs"]
"AVAgents" ="sim.envs.register:register_envs"
# Build system configuration
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"