-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (26 loc) · 881 Bytes
/
Copy pathpyproject.toml
File metadata and controls
33 lines (26 loc) · 881 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "robogesture"
version = "4.0.0"
description = "RoboGesture inference: speech-driven humanoid motion, English dialogue and MuJoCo demos"
requires-python = ">=3.10,<3.11"
dynamic = ["dependencies"]
license = {file = "LICENSE"}
readme = "README.md"
[project.scripts]
robogesture = "robogesture.cli:main"
[project.urls]
"Project Page" = "https://robogesture.github.io/"
Paper = "https://arxiv.org/abs/2608.28693"
[tool.setuptools.packages.find]
include = ["robogesture*", "training_examples*"]
[tool.setuptools.package-data]
robogesture = ["assets/data2/*.xml", "assets/meshes/*.STL"]
training_examples = ["README.md", "specification.json"]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[tool.ruff]
target-version = "py310"
line-length = 100