-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (25 loc) · 785 Bytes
/
setup.py
File metadata and controls
26 lines (25 loc) · 785 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
from setuptools import setup, find_packages
setup(
name = 'r3kit',
version = '0.0.1',
license = 'MIT',
description = 'Research kits for real robots',
author = "Junbo Wang",
author_email = "sjtuwjb3589635689@sjtu.edu.cn",
maintainer = "Junbo Wang",
maintainer_email = "sjtuwjb3589635689@sjtu.edu.cn",
url = "https://github.com/ForceMimic/r3kit",
packages = find_packages(),
include_package_data = True,
install_requires = [
'numpy<2.0.0',
'opencv-python>=4.10.0',
'open3d>=0.18.0',
'matplotlib',
'scipy',
'transformations',
'pyrealsense2==2.53.1.4623', # needed by camera realsense
'pyserial', # needed by encoder pdcd angle
],
zip_safe = False
)