-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (64 loc) · 1.67 KB
/
Copy pathpyproject.toml
File metadata and controls
74 lines (64 loc) · 1.67 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[build-system]
requires = ["setuptools", "wheel", "build"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["embodied_gen"]
[project]
name = "embodied_gen"
version = "v2.0.0"
readme = "README.md"
license = "Apache-2.0"
license-files = ["LICENSE", "NOTICE"]
dependencies = []
requires-python = ">=3.10"
[project.optional-dependencies]
dev = [
"cpplint",
"pre-commit",
"ruff",
"pytest",
"pytest-mock",
"mkdocs",
"mkdocs-material",
"mkdocstrings[python]",
"mkdocs-git-revision-date-localized-plugin",
"pycodestyle",
]
[project.scripts]
drender-cli = "embodied_gen.data.differentiable_render:entrypoint"
backproject-cli = "embodied_gen.data.backproject_v2:entrypoint"
img3d-cli = "embodied_gen.scripts.imageto3d:entrypoint"
text3d-cli = "embodied_gen.scripts.textto3d:text_to_3d"
texture-cli = "embodied_gen.scripts.gen_texture:entrypoint"
scene3d-cli = "embodied_gen.scripts.gen_scene3d:entrypoint"
layout-cli = "embodied_gen.scripts.gen_layout:entrypoint"
sim-cli = "embodied_gen.scripts.simulate_sapien:entrypoint"
room-cli = "embodied_gen.scripts.gen_room:entrypoint"
affordance-cli = "embodied_gen.scripts.affordance_annot.affordance_annot:entrypoint"
[tool.ruff]
line-length = 79
target-version = "py310"
extend-exclude = ["thirdparty"]
[tool.ruff.lint]
select = ["D", "E", "F", "I", "W"]
ignore = [
"D100",
"D101",
"D102",
"D103",
"D104",
"D105",
"D107",
"D202",
"E203",
"E251",
"E402",
"E501",
]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.ruff.lint.isort]
known-first-party = ["embodied_gen"]
no-lines-before = ["first-party"]
[tool.ruff.format]
quote-style = "preserve"