-
Notifications
You must be signed in to change notification settings - Fork 14
/
pyproject.toml
45 lines (41 loc) · 1.19 KB
/
pyproject.toml
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build]
include = ["vhap/**/*.py"]
[project]
name = "VHAP"
version = "0.0.2"
requires-python = ">=3.9"
dependencies = [
"tyro",
"pyyaml",
"numpy==1.22.3",
"matplotlib==3.8.0",
"scipy",
"pillow",
"opencv-python",
"ffmpeg-python",
"torch", # manually install to avoid CUDA version mismatch
"torchvision", # manually install to avoid CUDA version mismatch
"tensorboard",
"chumpy",
"trimesh",
"nvdiffrast@git+https://github.com/ShenhanQian/nvdiffrast@backface-culling",
"BackgroundMattingV2@git+https://github.com/ShenhanQian/BackgroundMattingV2",
"STAR@git+https://github.com/ShenhanQian/STAR/",
"dlib", # for STAR
"pandas", # for STAR
"gdown", # for STAR
"face-alignment",
"face-detection-tflite", # for face-alignment
"pytorch3d@git+https://github.com/facebookresearch/pytorch3d.git",
"dearpygui",
]
authors = [
{name = "Shenhan Qian", email = "[email protected]"},
]
description = "A complete head tracking pipeline from videos to NeRF-ready datasets."
readme = "README.md"