Jialin Yang
Initial release on Huggingface Spaces with Gradio UI
352b049
raw
history blame contribute delete
228 Bytes
from setuptools import setup, find_packages
setup(
name="joints2smpl",
version="0.1.0",
package_dir={"": "."},
packages=find_packages(where="."),
install_requires=[
"torch",
"numpy",
],
)