-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (53 loc) · 983 Bytes
/
Copy pathpyproject.toml
File metadata and controls
58 lines (53 loc) · 983 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
51
52
53
54
55
56
57
[build-system]
requires = ["setuptools", "toml"]
build-backend = "setuptools.build_meta"
[tool.black]
line_length = 120
target-version = ['py310']
[tool.isort]
profile = "black"
line_length = 120
py_version = 310
group_by_package = true
sections = [
"FUTURE",
"STDLIB",
"THIRDPARTY",
"FIRSTPARTY",
"ISAACLABPARTY",
"LOCALFOLDER",
]
extra_standard_library = [
"numpy",
"h5py",
"open3d",
"torch",
"tensordict",
"bpy",
"matplotlib",
"gymnasium",
"gym",
"scipy",
"hid",
"yaml",
"prettytable",
"toml",
"trimesh",
"tqdm",
]
known_thirdparty = [
"omni.isaac.core",
"omni.replicator.isaac",
"omni.replicator.core",
"pxr",
"omni.kit.*",
"warp",
"carb",
]
known_isaaclabparty = [
"omni.isaac.lab",
"omni.isaac.lab_tasks",
"omni.isaac.lab_assets"
]
# Modify the following to include the package names of your first-party code
known_firstparty = "multimodal_rl"