-
Notifications
You must be signed in to change notification settings - Fork 74
/
setup.py
29 lines (28 loc) · 1004 Bytes
/
setup.py
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
from setuptools import setup, find_packages
setup(
name="nha",
version="0.1.0",
packages=find_packages(),
python_requires=">=3.9",
install_requires=[
"ConfigArgParse",
"numpy==1.21",
"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",
"pytorch-lightning==1.2.4",
"lpips",
"pytorch_msssim",
"cpbd@git+https://github.com/wl2776/python-cpbd.git",
"scikit-learn",
"torchscope@git+https://github.com/Tramac/torchscope.git",
"jupyter"
],
)