forked from brjathu/PHALP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·44 lines (43 loc) · 1.35 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#!/usr/bin/env python
from setuptools import find_packages, setup
# from pip.req import parse_requirements
setup(
name='phalp',
version='0.1.3',
description='PHALP: A Python package for People Tracking in 3D',
url='https://github.com/brjathu/PHALP',
author='Jathushan Rajasegaran',
author_email='[email protected]',
license='MIT License',
packages=find_packages(),
python_requires='>=3.7',
install_requires=[
"opencv-python",
"joblib",
"scikit-learn",
"pyrender",
"dill",
"rich",
"einops",
"scenedetect[opencv]",
"hydra-core",
"timm",
"av",
"smplx==0.1.28",
"numpy",
"detectron2 @ git+https://github.com/facebookresearch/detectron2.git",
"pytube @ git+https://github.com/pytube/pytube.git",
"pyopengl @ git+https://github.com/mmatl/pyopengl.git",
"chumpy @ git+https://github.com/mattloper/chumpy", # smplx dependency
"neural-renderer-pytorch @ git+https://github.com/shubham-goel/NMR.git",
],
extras_require={
'all': [
"hmr2 @ git+https://github.com/shubham-goel/4D-Humans.git",
],
'blur': [
'facenet_pytorch'
]
},
dependency_links=[]
)