moveit2
The MoveIt Motion Planning Framework for ROS 2.
Toggle main menu visibility
Main Page
Related Pages
Namespaces
Namespace List
Namespace Members
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
a
b
c
d
e
f
g
h
i
j
k
l
m
o
p
q
r
s
t
u
v
w
x
Variables
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
x
z
Typedefs
a
b
c
d
e
f
g
i
j
k
l
m
n
o
p
r
s
t
v
x
Enumerations
Enumerator
a
c
d
e
f
g
i
j
l
m
n
o
p
r
s
u
v
w
x
y
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Typedefs
a
b
c
d
e
f
g
i
j
k
l
m
o
p
q
r
s
t
v
w
Enumerations
Enumerator
a
b
c
d
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
Properties
Related Symbols
Files
File List
File Members
All
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Functions
a
b
c
d
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
x
Variables
c
d
e
g
i
j
l
m
n
p
r
s
t
v
z
Typedefs
Enumerations
Enumerator
Macros
_
a
b
c
e
f
i
m
o
q
t
v
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Pages
Loading...
Searching...
No Matches
moveit_configs_utils
setup.py
Go to the documentation of this file.
1
from
setuptools
import
setup, find_packages
2
from
glob
import
glob
3
4
package_name =
"moveit_configs_utils"
5
6
setup
(
7
name=package_name,
8
version=
"2.13.0"
,
9
packages=find_packages(),
10
data_files=[
11
(
"share/ament_index/resource_index/packages"
, [
"resource/"
+ package_name]),
12
(
"share/"
+ package_name, [
"package.xml"
]),
13
(
"share/"
+ package_name +
"/default_configs"
, glob(
"default_configs/*"
)),
14
],
15
install_requires=[
"setuptools"
],
16
zip_safe=
True
,
17
maintainer=
"MoveIt Release Team"
,
18
maintainer_email=
"moveit_releasers@googlegroups.com"
,
19
description=
"Python library for loading MoveIt config parameters in launch files"
,
20
license=
"BSD"
,
21
tests_require=[
"pytest"
],
22
entry_points={
23
"console_scripts"
: [],
24
},
25
)
setup
Definition
setup.py:1
Generated by
1.9.8