Requirements for install.

This commit is contained in:
gulvarol
2019-07-10 14:51:01 +02:00
parent eaebc2c7ae
commit 9ee96e7102
2 changed files with 10 additions and 0 deletions

View File

@ -1,13 +1,23 @@
import setuptools import setuptools
with open("README.md", "r") as fh: with open("README.md", "r") as fh:
long_description = fh.read() long_description = fh.read()
REQUIREMENTS = [
"opencv-python",
"matplotlib",
"numpy",
"torch",
"chumpy @ git+ssh://git@github.com/hassony2/chumpy"]
setuptools.setup( setuptools.setup(
name="smpl-pytorch", name="smpl-pytorch",
version="0.0.1", version="0.0.1",
author="Gul Varol", author="Gul Varol",
author_email="gulvarols@gmail.com", 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", description="SMPL human body layer for PyTorch is a differentiable PyTorch layer",
long_description=long_description, long_description=long_description,
long_description_content_type="text/markdown", long_description_content_type="text/markdown",

0
smpl/__init__.py Normal file
View File