11 lines
219 B
Python
11 lines
219 B
Python
from distutils.core import setup
|
|
from catkin_pkg.python_setup import generate_distutils_setup
|
|
|
|
|
|
setup_args = generate_distutils_setup(
|
|
packages=['topic_tools'],
|
|
package_dir={'': 'python'})
|
|
|
|
|
|
setup(**setup_args)
|