-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (28 loc) · 827 Bytes
/
setup.py
File metadata and controls
29 lines (28 loc) · 827 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
27
28
29
from setuptools import setup
setup(
name='ros-abuild',
version='0.0.0',
description='generate-rospkg-apkbuild',
url='https://github.com/alpine-ros/generate-rospkg-apkbuild',
author='Atsushi Watanabe',
author_email='atsushi.w@ieee.org',
packages=['generate_rospkg_apkbuild'],
package_data={'generate_rospkg_apkbuild': ["APKBUILD.em.sh"]},
install_requires=[
'catkin_pkg',
'empy',
'pyyaml',
'requests',
'rosdep',
'rosdistro',
'rosinstall-generator',
'vcstool',
],
entry_points={
'console_scripts': [
'generate-rospkg-apkbuild=generate_rospkg_apkbuild.genapkbuild:main',
'generate-rospkg-apkbuild-multi=generate_rospkg_apkbuild.genapkbuild:main_multi'
]
},
license="BSD"
)