forked from facebookresearch/fairmotion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (30 loc) · 902 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
27
28
29
30
31
32
# Copyright (c) Facebook, Inc. and its affiliates.
from setuptools import find_packages, setup
setup(
name="fairmotion",
version="0.0.4",
description="fairmotion is FAIR's library for human motion research",
url="https://github.com/facebookresearch/fairmotion",
author="FAIR Pittsburgh",
author_email="[email protected]",
install_requires=[
"black",
"dataclasses", # py3.6 backport required by human_body_prior
"human_body_prior",
"matplotlib",
"numpy",
"pillow",
"pyrender==0.1.39",
"scikit-learn",
"scipy",
"torch==1.4.0",
"tqdm",
"PyOpenGL==3.1.0",
],
packages=find_packages(exclude=["tests"]),
classifiers=[
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
)