mirror of
https://github.com/YikeStone/ros_arduino_bridge.git
synced 2025-08-03 19:24:09 +05:30
12 lines
232 B
Python
12 lines
232 B
Python
#!/usr/bin/env python
|
|
|
|
from distutils.core import setup
|
|
from catkin_pkg.python_setup import generate_distutils_setup
|
|
|
|
d = generate_distutils_setup(
|
|
packages=['ros_arduino_python'],
|
|
package_dir={'': 'src'},
|
|
)
|
|
|
|
setup(**d)
|