File size: 739 Bytes
cd47a59 | 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 | from setuptools import setup, find_packages
print('Found packages:', find_packages())
setup(
description='HMR2 as a package',
name='hmr2',
packages=find_packages(),
install_requires=[
'gdown',
'numpy',
'torch',
'torchvision',
'pytorch-lightning',
'smplx==0.1.28',
'pyrender',
'opencv-python',
'yacs',
'scikit-image',
'einops',
'timm',
'webdataset',
'dill',
'pandas',
'chumpy @ git+https://github.com/mattloper/chumpy',
],
extras_require={
'all': [
'detectron2 @ git+https://github.com/facebookresearch/detectron2',
],
},
)
|