Main Page
+
Namespaces
Namespace List
+
Namespace Members
All
Functions
Variables
+
Classes
Class List
+
Class Members
All
Functions
Variables
+
Files
File List
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)
setup
gpio_control
Author(s):
autogenerated on Mon Feb 28 2022 22:24:44