11 lines
233 B
Python
Executable File
11 lines
233 B
Python
Executable File
#!/usr/bin/env python
|
|
from setuptools import setup
|
|
from catkin_pkg.python_setup import generate_distutils_setup
|
|
|
|
d = generate_distutils_setup(
|
|
packages = ['local_planner_limits'],
|
|
package_dir = {'': 'src'},
|
|
)
|
|
|
|
setup(**d)
|