moveit2
The MoveIt Motion Planning Framework for ROS 2.
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
setup.py
Go to the documentation of this file.
1from setuptools import setup, find_packages
2from glob import glob
3
4package_name = "moveit_configs_utils"
5
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)
Definition setup.py:1