-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 689 Bytes
/
Copy pathsetup.py
File metadata and controls
27 lines (24 loc) · 689 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/usr/bin/env python
from distutils.core import setup
from catkin_pkg.python_setup import generate_distutils_setup
setup(
**generate_distutils_setup(
packages=[
"aioros",
"aioros._node",
"aioros._node._action",
"aioros._node._tcpros",
"aioros._utils",
"aioros.abc",
"aioros.master",
"aioros.tf2",
"aioros.xmlrpc",
"aioros.xmlrpc._protocol",
],
package_data={
"aioros": ["py.typed"],
"aioros.tf2": ["_buffer_core.pyi", "_linear_math.pyi"],
"aioros.xmlrpc._protocol": ["xmlrpc.rng"],
},
)
)