Add setup.py file

This commit is contained in:
Michel Breyer
2021-07-07 16:29:50 +02:00
parent f29d861fd4
commit 6658b8c7f0
11 changed files with 61 additions and 65 deletions

12
setup.py Normal file
View File

@@ -0,0 +1,12 @@
# ! 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=["active_grasp"],
)
setup(**setup_args)