forked from nlepora/common_robot_interface
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
23 lines (20 loc) · 866 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
# -*- 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="[email protected], [email protected]",
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"],
package_data={'cri.ur': ['rtde_config.xml'],
"cri.dobot.magician": ['DobotDll.dll',"msvcp120.dll","msvcr120.dll","Qt5Core.dll","Qt5Network.dll","Qt5SerialPort.dll"]},
install_requires=["numpy", "transforms3d"]
)