23 lines
507 B
TOML
23 lines
507 B
TOML
[project]
|
|
name = "digital-human-lipsync-service"
|
|
version = "0.1.0"
|
|
description = "Gradio-compatible audio-driven digital human lip-sync service adapter"
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"gradio>=4.44,<6",
|
|
"gradio-client>=1.3,<2",
|
|
]
|
|
|
|
[project.scripts]
|
|
digital-human-lipsync-service = "digital_human_lipsync_service.app:main"
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=68"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
|
|
[tool.uv]
|
|
package = true
|