forked from ros/catkin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (21 loc) · 661 Bytes
/
setup.py
File metadata and controls
24 lines (21 loc) · 661 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python
from distutils.core import setup
setup(name='catkin',
version= "0.0.0",
packages=['catkin'],
package_dir = {'':'python'},
scripts = [],
author = "Troy Straszheim, Morten Kjaergaard",
author_email = "straszheim@willowgarage.com",
url = "http://www.ros.org",
download_url = "http://github.com/straszheim/catkin/",
keywords = ["ROS"],
classifiers = [
"Programming Language :: Python",
"License :: OSI Approved :: BSD License" ],
description = "ROS msg/srv generation",
long_description = """\
Build system stuff
""",
license = "BSD"
)