Spaces:
Running on Zero
Running on Zero
File size: 228 Bytes
352b049 | 1 2 3 4 5 6 7 8 9 10 11 12 | from setuptools import setup, find_packages
setup(
name="joints2smpl",
version="0.1.0",
package_dir={"": "."},
packages=find_packages(where="."),
install_requires=[
"torch",
"numpy",
],
) |