-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
42 lines (37 loc) · 1.35 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
39
40
41
42
from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
def load_license():
with open('LICENSE.rst') as f:
return f.read()
setup(name='ur_cb2',
version='0.2',
description='A package to interface with a UR CB2 Robot over TCP/IP',
long_description=readme(),
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Manufacturing',
'Intended Audience :: Science/Research',
'License :: Other/Proprietary License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
],
keywords='universal robots cb2 ur5',
url='https://github.com/IRIM-Technology-Transition-Lab/ur_cb2.git',
author='Michael Sobrepera',
author_email='[email protected]',
license=load_license(),
packages=['ur_cb2', 'ur_cb2.receive', 'ur_cb2.send'],
install_requires=[
],
include_package_data=True,
entry_points={
'console_scripts': ['cb2-listen=ur_cb2.receive.cb2_receive_example:'
'main',
'cb2-record=ur_cb2.receive.cb2_store_points:main',
'cb2-play=ur_cb2.cb2_move_to_points:main']
},
zip_safe=False)