Files
Pose_to_SMPL_an_230402/setup.py
2019-07-10 14:51:01 +02:00

32 lines
889 B
Python

import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
REQUIREMENTS = [
"opencv-python",
"matplotlib",
"numpy",
"torch",
"chumpy @ git+ssh://git@github.com/hassony2/chumpy"]
setuptools.setup(
name="smpl-pytorch",
version="0.0.1",
author="Gul Varol",
author_email="gulvarols@gmail.com",
python_requires=">=3.5.0",
install_requires=REQUIREMENTS,
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",
],
)