File size: 1,991 Bytes
1a9b87d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
79
80
81
82
83
84
[project]
name = "memo"
version = "0.1.0"
description = "MEMO: Memory-Guided Diffusion for Expressive Talking Video Generation"
readme = "README.md"
requires-python = ">=3.10"
license = {file = "LICENSE"}
keywords = [
    'artificial intelligence',
    'computer vision',
    'diffusion models',
    'video generation',
    'talking head',
]

dependencies = [
    'accelerate==1.1.1',
    'albumentations==1.4.21',
    'audio-separator==0.24.1',
    'black==23.12.1',
    'diffusers==0.31.0',
    'einops==0.8.0',
    'ffmpeg-python==0.2.0',
    'funasr==1.0.27',
    'huggingface-hub==0.26.2',
    'imageio==2.36.0',
    'imageio-ffmpeg==0.5.1',
    'insightface==0.7.3',
    'hydra-core==1.3.2',
    'jax==0.4.35',
    'mediapipe==0.10.18',
    'modelscope==1.20.1',
    'moviepy==1.0.3',
    'numpy==1.26.4',
    'omegaconf==2.3.0',
    'onnxruntime-gpu>=1.20.1',
    'opencv-python-headless==4.10.0.84',
    'pillow>=10.4.0',
    'scikit-learn>=1.5.2',
    'scipy>=1.14.1',
    'torch==2.5.1',
    'torchaudio==2.5.1',
    'torchvision==0.20.1',
    'transformers==4.46.3',
    'tqdm>=4.67.1',
    'xformers==0.0.28.post3',
]

[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"

[tool.setuptools]
packages = ["memo"]

[tool.ruff]
line-length = 119

[tool.ruff.lint]
# Never enforce `E501` (line length violations).
ignore = ["C901", "E501", "E741", "F402", "F823" ]
select = ["C", "E", "F", "I", "W"]

# Ignore import violations in all `__init__.py` files.
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["E402", "F401", "F403", "F811"]

[tool.ruff.lint.isort]
lines-after-imports = 2
known-first-party = ["vpt_x"]

[tool.ruff.format]
# Like Black, use double quotes for strings.
quote-style = "double"

# Like Black, indent with spaces, rather than tabs.
indent-style = "space"

# Like Black, respect magic trailing commas.
skip-magic-trailing-comma = false

# Like Black, automatically detect the appropriate line ending.
line-ending = "auto"