diff --git a/__init__.py b/__init__.py new file mode 100644 index 0000000..590cb16 --- /dev/null +++ b/__init__.py @@ -0,0 +1 @@ +name = "smpl-pytorch" \ No newline at end of file diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..85b3e53 --- /dev/null +++ b/setup.py @@ -0,0 +1,21 @@ +import setuptools + +with open("README.md", "r") as fh: + long_description = fh.read() + +setuptools.setup( + name="smpl-pytorch", + version="0.0.1", + author="Gul Varol", + author_email="gulvarols@gmail.com", + description="SMPL human body layer for PyTorch is a differentiable PyTorch layer", + long_description=long_description, + long_description_content_type="text/markdown", + url="https://github.com/gulvarol/smpl-pytorch", + packages=setuptools.find_packages(), + classifiers=[ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: GNU General Public License v3 (GPLv3)", + "Operating System :: OS Independent", + ], +)