13 lines
244 B
Python
13 lines
244 B
Python
#!/usr/bin/env python
|
|
|
|
from distutils.core import setup, Extension
|
|
from catkin_pkg.python_setup import generate_distutils_setup
|
|
|
|
d = generate_distutils_setup(
|
|
packages=['roslz4'],
|
|
package_dir={'': 'src'},
|
|
requires=[],
|
|
)
|
|
|
|
setup(**d)
|