-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (44 loc) · 957 Bytes
/
pyproject.toml
File metadata and controls
50 lines (44 loc) · 957 Bytes
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
[build-system]
requires = ["setuptools>=64"]
build-backend = "setuptools.build_meta"
[project]
name = "diffmjx"
version = "0.0.1"
description = "Adaptive time integration for MuJoCo MJX using diffrax"
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.12"
dependencies = [
"jax>=0.4.20",
"equinox>=0.11.0",
"optimistix>=0.0.6",
"softjax",
"mujoco==3.3.1",
"mujoco-mjx==3.3.1",
"diffrax>=0.6.0",
"mjx-diffrax",
"matplotlib",
"seaborn",
"hydra-core",
"omegaconf",
"wandb",
"mediapy",
"tqdm",
]
[project.optional-dependencies]
gpu = [
"jax[cuda12]>=0.8.0",
]
dev = ["pytest", "ruff"]
[tool.uv.sources]
mujoco-mjx = { path = "./external/mujoco/mjx", editable = true }
mjx-diffrax = { path = "./external/mjx_diffrax", editable = true }
[tool.setuptools]
packages = []
[tool.ruff]
line-length = 100
extend-exclude = ["external"]
[dependency-groups]
dev = [
"ruff>=0.15.0",
]