From 9ee96e7102d40557abdad639913b2ddaba241ca2 Mon Sep 17 00:00:00 2001 From: gulvarol Date: Wed, 10 Jul 2019 14:51:01 +0200 Subject: [PATCH] Requirements for install. --- setup.py | 10 ++++++++++ smpl/__init__.py | 0 2 files changed, 10 insertions(+) create mode 100644 smpl/__init__.py diff --git a/setup.py b/setup.py index 85b3e53..39c965d 100644 --- a/setup.py +++ b/setup.py @@ -1,13 +1,23 @@ 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", diff --git a/smpl/__init__.py b/smpl/__init__.py new file mode 100644 index 0000000..e69de29