setup.py
Go to the documentation of this file.
1 """
2 Setup.py. Makes sure that we have access to our gpio_control_utils lib, both within our node
3 and within other workspaces if that's something people want to use. Also make sure we can run the
4 no-root script, if necessary.
5 """
6 
7 from distutils.core import setup
8 from catkin_pkg.python_setup import generate_distutils_setup
9 
10 d = generate_distutils_setup(
11  packages=['gpio_control'],
12  package_dir={'': 'include'},
13 )
14 
15 setup(**d)


gpio_control
Author(s):
autogenerated on Thu Apr 22 2021 02:55:39