forked from ros-infrastructure/rosdep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (24 loc) · 1006 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
24
25
26
import os
from setuptools import setup
exec(open(os.path.join(os.path.dirname(__file__), 'src', 'rosdep2', '_version.py')).read())
setup(
name='rosdep',
version=__version__, # noqa:F821
packages=['rosdep2', 'rosdep2.ament_packages', 'rosdep2.platforms'],
package_dir={'': 'src'},
install_requires=['catkin_pkg >= 0.4.0', 'rospkg >= 1.1.10', 'rosdistro >= 0.7.5', 'PyYAML >= 3.1'],
test_suite='nose.collector',
test_requires=['mock', 'nose >= 1.0'],
scripts=['scripts/rosdep', 'scripts/rosdep-source'],
author='Tully Foote, Ken Conley',
author_email='[email protected]',
url='http://wiki.ros.org/rosdep',
keywords=['ROS'],
classifiers=[
'Programming Language :: Python',
'License :: OSI Approved :: BSD License'],
description='rosdep package manager abstraction tool for ROS',
long_description='Command-line tool for installing system '
'dependencies on a variety of platforms.',
license='BSD'
)