forked from nv-tlabs/kimodo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (70 loc) · 2.03 KB
/
pyproject.toml
File metadata and controls
78 lines (70 loc) · 2.03 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
75
76
77
78
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "kimodo"
version = "1.0.0"
description = "Kimodo motion generation model"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "Apache-2.0"}
dependencies = [
"hydra-core>=1.3",
"omegaconf>=2.3",
"numpy>=1.23",
"scipy>=1.10",
"transformers==5.1.0",
"urllib3>=2.6.3",
"boto3",
"peft>=0.18",
"einops>=0.7",
"tqdm>=4.0",
"packaging>=21.0",
"pydantic>=2.0",
"filelock>=3.20.3",
"gradio>=6.8.0",
"gradio_client>=1.0",
"trimesh>=3.21.7",
"scenepic>=1.1.0",
"pillow>=9.0",
"av>=16.1.0",
"bvhio",
]
[project.optional-dependencies]
demo = [
"viser @ git+https://github.com/nv-tlabs/kimodo-viser.git",
]
soma = [
"py-soma-x @ git+https://github.com/NVlabs/SOMA-X.git"
]
all = [
"viser @ git+https://github.com/nv-tlabs/kimodo-viser.git",
"py-soma-x @ git+https://github.com/NVlabs/SOMA-X.git"
]
[project.scripts]
kimodo_gen = "kimodo.scripts.generate:main"
kimodo_demo = "kimodo.demo:main"
kimodo_textencoder = "kimodo.scripts.run_text_encoder_server:main"
kimodo_convert = "kimodo.scripts.motion_convert:main"
kimodo_bones_seed = "kimodo.scripts.bones_seed:main"
kimodo_planner = "kimodo.scripts.qwen_planner:main"
kimodo_planner_contract_check = "kimodo.scripts.planner_contract_check:main"
kimodo_planner_baseline_eval = "kimodo.scripts.planner_baseline_eval:main"
kimodo_runtime_health = "kimodo.scripts.runtime_health:main"
kimodo_textencoder_health = "kimodo.scripts.text_encoder_health:main"
kimodo_textencoder_smoke = "kimodo.scripts.text_encoder_smoke:main"
kimodo_space = "kimodo.scripts.space_frontend:main"
[tool.setuptools]
include-package-data = true
zip-safe = false
[tool.setuptools.package-data]
kimodo = ["assets/**/*"]
[tool.flake8]
max-line-length = 120
[tool.ruff]
extend-select = ["I001"] # Enable import sorting
line-length = 120
[tool.ruff.lint.isort]
known-first-party = ["kimodo"]
known-third-party = ["torch", "numpy", "pytorch_lightning", "wandb", "tqdm"]
force-sort-within-sections = false