-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (37 loc) · 858 Bytes
/
Copy pathpyproject.toml
File metadata and controls
41 lines (37 loc) · 858 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
[build-system]
requires = []
build-backend = "madrona_py_build"
backend-path = ["external/madrona/py"]
[project]
name = "madrona_mjx"
version = "0.0.1"
[tool.madrona.packages.madrona_mjx]
path = "src/madrona_mjx"
ext-out-dir = "build"
extensions = [ "_madrona_mjx_batch_renderer", "_madrona_mjx_visualizer" ]
requires-python = ">=3.10"
dependencies = [
"jax<0.6.0",
]
[tool.isort]
force_single_line = true
force_sort_within_sections = true
lexicographical = true
single_line_exclusions = ["typing"]
order_by_type = false
group_by_package = true
line_length = 120
use_parentheses = true
multi_line_output = 3
include_trailing_comma = true
skip = ["mujoco_menagerie"]
skip_glob = ["**/*.ipynb"]
[tool.pyink]
line-length = 80
unstable = true
pyink-indentation = 2
pyink-use-majority-quotes = true
extend-exclude = '''(
mujoco_menagerie
| .ipynb$
)'''