File: setup.py

package info (click to toggle)
urdfdom 0.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 672 kB
  • ctags: 289
  • sloc: cpp: 1,991; python: 938; sh: 35; makefile: 9
file content (16 lines) | stat: -rw-r--r-- 768 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/env python

from distutils.core import setup

d = {'author': u'Thomas Moulard <thomas.moulard@gmail.com>, David Lu <davidlu@wustl.edu>, Kelsey Hawkins <kphawkins@gmail.com>, Antonio El Khoury <aelkhour@laas.fr>, Eric Cousineau <eacousineau@gmail.com>',
 'description': 'The urdf_parser_py package contains a Python implementation of the\nurdf_parser modeling various aspects of robot information, specified in the\nXml Robot Description Format (URDF).',
 'license': 'BSD',
 'maintainer': u'Thomas Moulard',
 'maintainer_email': 'thomas.moulard@gmail.com',
 'name': 'urdf_parser_py',
 'package_dir': {'': 'src'},
 'packages': ['urdf_parser_py', 'urdf_parser_py.xml_reflection'],
 'url': 'http://ros.org/wiki/urdf_parser_py',
 'version': '0.3.0'}

setup(**d)