-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path11a.py
More file actions
21 lines (20 loc) · 730 Bytes
/
11a.py
File metadata and controls
21 lines (20 loc) · 730 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup, find_packages
setup(
name="vht",
version="0.1.0",
packages=find_packages(),
python_requires=">=3.9",
install_requires=[
"ConfigArgParse",
"torch@https://download.pytorch.org/whl/cu113/torch-1.10.2%2Bcu113-cp39-cp39-linux_x86_64.whl",
"torchvision@https://download.pytorch.org/whl/cu113/torchvision-0.11.3%2Bcu113-cp39-cp39-linux_x86_64.whl",
"pytorch3d@https://dl.fbaipublicfiles.com/pytorch3d/packaging/wheels/py39_cu113_pyt1100/pytorch3d-0.6.1-cp39-cp39-linux_x86_64.whl",
"matplotlib",
"tensorboard",
"scipy",
"opencv-python",
"chumpy",
"face-alignment",
"face-detection-tflite",
],
)