Rangement

This commit is contained in:
Unknown 2018-08-13 12:24:33 +02:00
parent 5ea3bd93c8
commit 97b12ef01e
43 changed files with 9 additions and 301 deletions

17
rviz_interface/setup.py Normal file
View file

@ -0,0 +1,17 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
## ! DO NOT MANUALLY INVOKE THIS setup.py, USE CATKIN INSTEAD
from distutils.core import setup
from catkin_pkg.python_setup import generate_distutils_setup
# fetch values from package.xml
setup_args = generate_distutils_setup(
packages=['asift_matching'],
package_dir={'': 'src'},
)
setup(**setup_args)