-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
32 lines (28 loc) · 948 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
[tool.poetry]
name = "flock-env"
version = "0.1.0"
description = "Multi-agent Flock Environment Implemented in JAX"
authors = ["zombie-einstein <[email protected]>"]
readme = "README.md"
packages = [{include = "flock_env"}]
homepage = "https://github.com/zombie-einstein/flock_env"
repository = "https://github.com/zombie-einstein/flock_env"
keywords = ["jax", "rl", "multi-agent rl"]
[tool.poetry.dependencies]
python = ">=3.10,<3.12"
jax = "^0.4.4"
chex = "^0.1.6"
matplotlib = "^3.7.1"
esquilax = "^1.0.3"
[tool.poetry.group.dev.dependencies]
pre-commit = "^2.21.0"
taskipy = "^1.10.3"
pytest = "^7.2.1"
jax-ppo = { git = "https://github.com/zombie-einstein/JAX-PPO.git", develop=false }
jupyter = "^1.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.taskipy.tasks]
test = { cmd = "pytest tests", help="Run tests"}
lint = { cmd = "pre-commit run --all-files", help="Code format checks"}