-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (62 loc) · 2.74 KB
/
Copy pathpyproject.toml
File metadata and controls
66 lines (62 loc) · 2.74 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
[build-system]
requires = [ "poetry-core",]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "medusa"
version = "0.0.6"
description = "Medusa: 4D face reconstruction and analysis"
authors = [ "Lukas Snoek <lukassnoek@gmail.com>",]
license = "BSD-3-Clause"
readme = "README.md"
homepage = "https://medusa.lukas-snoek.com/medusa"
repository = "https://github.com/medusa-4D/medusa"
documentation = "https://medusa.lukas-snoek.com/medusa"
keywords = [ "face reconstruction", "face detection", "face movement",]
classifiers = [ "Intended Audience :: Science/Research", "License :: Free for non-commercial use", "Programming Language :: Python :: 3", "Topic :: Scientific/Engineering :: Artificial Intelligence",]
[tool.poetry.dependencies]
python = "3.10.*"
click = ">=8.1.3"
pytorch-lightning = ">=2.0.2"
pandas = ">=2.0.1"
numpy = ">=1.23.4"
tqdm = ">=4.64.1"
PyYAML = ">=6.0"
h5py = ">=3.7.0"
matplotlib = ">=3.6.2"
gdown = ">=4.5.3"
kornia = ">=0.6.8"
av = ">=10.0.0"
torch = [
{ markers = "sys_platform == 'linux'", url = "https://download.pytorch.org/whl/cu121/torch-2.3.0%2Bcu121-cp310-cp310-linux_x86_64.whl" },
{ markers = "sys_platform == 'win32'", url = "https://download.pytorch.org/whl/cu121/torch-2.3.0%2Bcu121-cp310-cp310-win_amd64.whl" },
{ markers = "sys_platform == 'darwin'", source = "PyPI", version = "2.3.0" }
]
torchvision = [
{ markers = "sys_platform == 'linux'", url = "https://download.pytorch.org/whl/cu121/torchvision-0.18.0%2Bcu121-cp310-cp310-linux_x86_64.whl" },
{ markers = "sys_platform == 'win32'", url = "https://download.pytorch.org/whl/cu121/torchvision-0.18.0%2Bcu121-cp310-cp310-win_amd64.whl" },
{ markers = "sys_platform == 'darwin'", source = "PyPI", version = "0.18.0" },
]
pytorch3d = [
{ markers = "sys_platform == 'linux'", url = "https://dl.fbaipublicfiles.com/pytorch3d/packaging/wheels/py310_cu121_pyt230/pytorch3d-0.7.6-cp310-cp310-linux_x86_64.whl" },
#{ markers = "sys_platform == 'darwin' and platform_machine == 'x86_64'", version = "0.7.4" }
]
mediapipe = ">=0.10.14"
chumpy = { git = "https://github.com/lukassnoek/chumpy.git" }
onnxruntime-gpu = [
{ markers = "sys_platform != 'darwin' and platform_machine != 'arm64'", version = ">=1.15.1" }
]
onnxruntime = [
{ markers = "sys_platform == 'darwin' and platform_machine == 'arm64'", version = ">=1.15.1" }
]
[tool.poetry.scripts]
medusa_download_ext_data = "medusa.cli:download_ext_data"
medusa_videorecon = "medusa.cli:videorecon_cmd"
medusa_videorender = "medusa.cli:videorender_cmd"
medusa_regenerate_example_recon_data = "medusa.data.regenerate_example_recon_data:main"
[tool.poetry.group.dev.dependencies]
jupyter-book = ">=0.15.1"
sphinx-autoapi = ">=2.0.0"
pytest = ">=7.2.0"
nbval = ">=0.9.6"
coverage = ">=6.5.0"
interrogate = ">=1.5.0"