-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
49 lines (45 loc) · 1.37 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
43
44
45
46
47
48
49
#! /usr/bin/env python
import glob
import os
from setuptools import setup
from setuptools import find_packages
package_name = 'robot_framework'
setup(
name=package_name,
version='0.0.0',
packages=find_packages(exclude=['test']),
data_files=[
('share/ament_index/resource_index/packages',
['resource/' + package_name]),
('share/' + package_name, ['package.xml']),
('share/robot_framework/conf',
glob.glob(os.path.join('conf', '*'))),
],
install_requires=[
'setuptools',
'numpy',
'pyquaternion',
],
zip_safe=True,
author='Agata Gniewek',
author_email='[email protected]',
maintainer='Agata Gniewek',
maintainer_email='[email protected]',
keywords=['ROS'],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Topic :: Software Development',
],
description="A framework for simulation and basic visualization of robots",
license='TODO',
tests_require=['pytest'],
entry_points={
'console_scripts': [
'visualization = robot_framework.visualization:main',
'mock_optitrack = robot_framework.mock_optitrack:main',
'balboa = robot_framework.main_swarmalatorbot_balboa:main',
],
},
)