-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (28 loc) · 918 Bytes
/
setup.py
File metadata and controls
29 lines (28 loc) · 918 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
29
from setuptools import setup, find_packages
setup(
name="smplreg",
packages=find_packages(),
version="0.1",
license="MIT",
description="Registration between a reconstructed point cloud and an estimated SMPL mesh",
author="Xintong Han",
author_email="hixintonghan@gmail.com",
url="https://github.com/xthan/smplreg",
keywords=["digital human", "SMPL", "body capture", "deep learning"],
install_requires=[
"torch",
"pytorch3d",
"smplxd@git+https://github.com/xthan/smplxd.git",
"omegaconf",
"chumpy",
"pre-commit",
"black==20.8b1",
],
classifiers=[
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
],
)