forked from vcstools/rosinstall
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (33 loc) · 1.21 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
from setuptools import setup
import imp
def get_version():
ver_file = None
try:
ver_file, pathname, description = imp.find_module('__version__', ['src/rosinstall'])
vermod = imp.load_module('__version__', ver_file, pathname, description)
version = vermod.version
return version
finally:
if ver_file is not None:
ver_file.close()
setup(name='rosinstall',
version=get_version(),
packages=['rosinstall'],
package_dir={'': 'src'},
install_requires=['vcstools>=0.1.30', 'pyyaml'],
scripts=["scripts/rosinstall", "scripts/roslocate",
"scripts/rosws", "scripts/rosco"],
author="Tully Foote",
author_email="[email protected]",
url="http://www.ros.org/wiki/rosinstall",
download_url="http://pr.willowgarage.com/downloads/rosinstall/",
keywords=["ROS"],
classifiers=["Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License"],
description="The installer for ROS",
long_description="""\
The installer for ROS
""",
license="BSD")