forked from nlepora/common_robot_interface
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (34 loc) · 1.09 KB
/
setup.py
File metadata and controls
37 lines (34 loc) · 1.09 KB
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
# -*- coding: utf-8 -*-
"""Setup file for Common Robot Interface.
"""
from setuptools import setup
with open("README.md", "r") as f:
long_description = f.read()
setup(
name="common_robot_interface",
version="0.5.0",
description="Common Robot Interface",
license="GPLv3",
long_description=long_description,
authors="John Lloyd, Nathan Lepora",
author_emaila="j.lloyd@bristol.ac.uk, n.lepora@bristol.ac.uk",
url="https://github.com/dexterousrobot/common_robot_interface",
packages=[
"cri",
"cri.abb",
"cri.ur",
"cri.ur.rtde",
"cri.dobot",
"cri.dobot.mg400",
"cri.dobot.cr",
"cri.dobot.magician",
"cri.grippers",
"cri.grippers.crap_hand",
],
package_data={
'cri.ur': ['rtde_config.xml'],
'cri.dobot.magician': ['DobotDll.dll','msvcp120.dll','msvcr120.dll','Qt5Core.dll','Qt5Network.dll','Qt5SerialPort.dll'],
'cri.grippers.crap_hand': ['firmware/*.ino', 'examples/*.py', 'README.md'],
},
install_requires=["numpy", "transforms3d", "pyserial"]
)