8 lines
188 B
Python
8 lines
188 B
Python
from distutils.core import setup
|
|
from catkin_pkg.python_setup import generate_distutils_setup
|
|
|
|
setup_args = generate_distutils_setup(
|
|
package_dir={'': 'scripts'}
|
|
)
|
|
|
|
setup(**setup_args) |