File size: 279 Bytes
2d6bfa0
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env python

from distutils.core import setup

from catkin_pkg.python_setup import generate_distutils_setup

d = generate_distutils_setup(
    packages=["mir_refbox_parser_ros"],
    package_dir={"mir_refbox_parser_ros": "ros/src/mir_refbox_parser_ros"},
)

setup(**d)