4D-Humans / HMR2 /setup.py
camenduru's picture
thanks to brjathu ❤
409f4af
raw
history blame contribute delete
179 Bytes
from setuptools import setup, find_packages
print('Found packages:', find_packages())
setup(
description='HMR2 as a package',
name='hmr2',
packages=find_packages()
)