-
-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (34 loc) · 959 Bytes
/
pyproject.toml
File metadata and controls
39 lines (34 loc) · 959 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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[tool.poetry]
name = "py_audio2face"
version = "0.1.4"
description = "Generate expressive facial animation from audio. Animate 3D characters including lip, face, and emotions with audio-to-animation. "
authors = ["SocAIty"]
license = "GPLv3"
[project]
name = "py_audio2face"
version = "0.1.4"
description = "Generate expressive facial animation from audio. Animate 3D characters including lip, face, and emotions with audio-to-animation. "
requires-python = ">=3.8"
authors = [
{ name = "SocAIty" }
]
license = { text = "GPLv3" }
readme = "README.md"
dependencies = [
'requests',
'tqdm',
'importlib_resources'
]
[project.urls]
Repository = "https://github.com/SocAIty/py_audio2face"
[tool.setuptools.package-data]
mypkg = ["*.usd"]
[project.optional-dependencies]
streaming = [
"numpy>=1.9.0",
"grpcio>=1.65.0",
"protobuf==3.20.3"
]