-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (25 loc) · 758 Bytes
/
Copy pathsetup.py
File metadata and controls
28 lines (25 loc) · 758 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
from setuptools import setup
setup(
name='MANO',
include_package_data=True,
#packages=find_packages(),
description='A Pytorch Inplementation of MANO differentiable hand model',
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
version='0.1',
url='https://github.com/otaheri/MANO',
author='Omid Taheri',
author_email='omid.taheri@tuebingen.mpg.de',
maintainer='Omid Taheri',
maintainer_email='omid.taheri@tuebingen.mpg.de',
#keywords=['pip','MANO'],
install_requires=[
'numpy>=1.16.2',
'torch>=1.0.1.post2',
'torchgeometry>=0.1.2',
'trimesh',
'scipy',
'chumpy'
],
packages=['mano']
)