Requirements for install.
This commit is contained in:
10
setup.py
10
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",
|
||||
|
||||
0
smpl/__init__.py
Normal file
0
smpl/__init__.py
Normal file
Reference in New Issue
Block a user