files for pypi

This commit is contained in:
neoglez
2019-07-10 12:30:55 +02:00
parent f14e9ef3a1
commit 1d079a1ac9
2 changed files with 22 additions and 0 deletions

21
setup.py Normal file
View File

@ -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",
],
)