forked from ros-infrastructure/buildfarm
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
executable file
·34 lines (30 loc) · 1.09 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
#!/usr/bin/env python
from distutils.core import setup
#import sys
#sys.path.insert(0, 'src')
#from buildfarm import __version__
setup(name='buildfarm',
version='0.0.1',
packages=['buildfarm'],
package_dir = {'buildfarm':'src/buildfarm'},
scripts = ['scripts/setup_apt_root.py',
'scripts/list_all.py',
'scripts/rosci',
'scripts/rosci-catkin-depends',
'scripts/rosci-clean-junit-xml'],
package_data = {'buildfarm': ['resources/templates/*.em', 'resources/templates/*/*']},
install_requires = ['vcstools', 'rospkg'],
author = "Tully Foote",
author_email = "[email protected]",
url = "http://www.ros.org/wiki/",
download_url = "http://pr.willowgarage.com/downloads/buildfarm/",
keywords = ["ROS"],
classifiers = [
"Programming Language :: Python",
"License :: OSI Approved :: BSD License" ],
description = "ROS package library",
long_description = """\
A library for interacting with the Catkin buildfarm.
""",
license = "BSD"
)