-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathsetup.py
26 lines (24 loc) · 839 Bytes
/
setup.py
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
from setuptools import setup
VERSION = '1.1.1'
setup(
name = 'body_measurements',
packages = ['body_measurements'], # this must be the same as the name above
version = VERSION,
license='MIT License',
description = 'It allows us to measure the human body generated by SMPL model.',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author = 'Carlos Roca',
author_email = 'u2carlosroca@gmail.com',
url = 'https://github.com/vcarlosrb/3d-body-measurements', # use the URL to the github repo
download_url = 'https://github.com/vcarlosrb/3d-body-measurements/tarball/0.1',
keywords = ['body', 'measurements', 'SMPL'],
python_requires=">=3.8",
install_requires = [
"trimesh>=3.8.8",
"numpy>=1.19.1",
"scipy>=1.5.2",
"shapely>=1.7.1",
"networkx>=2.5"
]
)