forked from ros-infrastructure/rosdep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (28 loc) · 1.05 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
from setuptools import setup
import sys
sys.path.insert(0, 'src')
from rosdep2 import __version__
setup(
name='rosdep',
version=__version__,
packages=['rosdep2', 'rosdep2.platforms'],
package_dir={'': 'src'},
package_data={'rosdep2': ['sources.list']},
install_requires=['catkin_pkg', 'rospkg', 'rosdistro >= 0.2.1', 'PyYAML >= 3.1'],
setup_requires=['nose >= 1.0'],
test_suite='nose.collector',
test_requires=['mock'],
scripts=['scripts/rosdep', 'scripts/rosdep-source'],
author="Tully Foote, Ken Conley",
author_email="[email protected], [email protected]",
url="http://www.ros.org/wiki/rosdep",
download_url="http://pr.willowgarage.com/downloads/rosdep/",
keywords=['ROS'],
classifiers=[
"Programming Language :: Python",
"License :: OSI Approved :: BSD License"],
description="rosdep package manager abstrction tool for ROS",
long_description="Command-line tool for installing system "
"dependencies on a variety of platforms.",
license="BSD"
)