-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·29 lines (25 loc) · 850 Bytes
/
setup.py
File metadata and controls
executable file
·29 lines (25 loc) · 850 Bytes
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
#!/usr/bin/env python
from setuptools import setup
import sys
sys.path.insert(0, 'src')
from genpy import __version__
setup(name='genpy',
version= __version__,
packages=['genpy'],
package_dir = {'':'src'},
install_requires=['genmsg'],
scripts = ['scripts/genmsg_py.py', 'scripts/gensrv_py.py'],
author = "Ken Conley",
author_email = "kwc@willowgarage.com",
url = "http://www.ros.org/wiki/genpy",
download_url = "http://pr.willowgarage.com/downloads/genpy/",
keywords = ["ROS"],
classifiers = [
"Programming Language :: Python",
"License :: OSI Approved :: BSD License" ],
description = "ROS msg/srv Python generation",
long_description = """\
Library and scripts for generating ROS message data structures in Python.
""",
license = "BSD"
)