-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
53 lines (47 loc) · 1.11 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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "mujoco_controllers"
version = "0.0.1"
description = "A repository for debugging controller implementations applied to mujoco models."
authors = [
{ name = "Peter David Fagan", email = "peterdavidfagan@gmail.com" }
]
readme = "README.md"
[tool.poetry]
name = "mujoco_controllers"
version = "0.0.1"
description = "A repository for debugging controller implementations applied to mujoco models."
license = "Apache-2.0"
authors = [
"Peter David Fagan <peterdavidfagan@gmail.com>"
]
readme = "README.md"
packages = [
{include = "mujoco_controllers"}
]
[tool.setuptools]
py-modules=["mujoco_controllers"]
[tool.poetry.dependencies]
python = "3.10.6"
numpy = "^1.16.0"
mujoco = "3.1.1"
dm-control = "1.0.16"
pillow = "10.0.0"
jax = "^0.4.14"
matplotlib = "^3.7.2"
hydra-core = "^1.3.2"
pytest = "^7.4.2"
lark = "^1.1.7"
profilehooks = "^1.12.0"
notebook = "^7.0.6"
plotly = "^5.18.0"
pandas = "^2.1.3"
ipywidgets = "^8.1.1"
jupyterlab = "^4.0.9"
jaxopt = "^0.8.2"
[tool.black]
line-length = 120
[tool.flake8]
max-line-length = 120