-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
38 lines (35 loc) · 1.08 KB
/
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
33
34
35
36
37
38
from pathlib import Path
from setuptools import setup, find_packages
root_dir = Path(__file__).parent
long_description = (root_dir / "README.md").read_text(encoding="utf-8")
setup(
name="HandTeleop",
version="1.0.0",
author="Yuzhe Qin",
author_email="[email protected]",
keywords="dexterous-manipulation data-collection teleoperation",
description="From One Hand to Multiple Hands: Imitation Learning for Dexterous Manipulation from Single-Camera Teleoperation",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://yzqin.github.io/dex-teleop-imitation/",
packages=find_packages(),
python_requires=">=3.8",
install_requires=[
"sapien==2.1.0",
"natsort",
"numpy",
"transforms3d",
"gym==0.25.2",
"open3d>=0.15.2",
"imageio",
"torch>=1.11.0",
"nlopt",
"smplx",
"opencv-python",
"mediapipe",
"torchvision",
"record3d",
"pyrealsense2"
],
extras_require={"tests": ["pytest", "black", "isort"]},
)