framework/setup.py

12 lines
251 B
Python
Raw Normal View History

2019-07-04 16:46:47 +03:00
from distutils.core import setup
from catkin_pkg.python_setup import generate_distutils_setup
args = generate_distutils_setup(
packages=['freecad_to_gazebo'],
package_dir={'': 'src'},
scripts=['scripts/freecad2gazebo'],
)
setup(**args)