File: setup.py

package info (click to toggle)
ros-catkin 0.8.12-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,212 kB
  • sloc: python: 4,117; sh: 508; xml: 256; cpp: 136; makefile: 125
file content (18 lines) | stat: -rw-r--r-- 416 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from catkin_pkg.python_setup import generate_distutils_setup

from setuptools import setup

d = generate_distutils_setup(
    packages=['catkin'],
    package_dir={'': 'python'},
    scripts=[
        'bin/catkin_find',
        'bin/catkin_init_workspace',
        'bin/catkin_make',
        'bin/catkin_make_isolated',
        'bin/catkin_test_results',
        'bin/catkin_topological_order',
    ],
)

setup(**d)