1 Star 0 Fork 0

Autopilot-X/X-Launch

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
setup.py 1008 Bytes
一键复制 编辑 原始数据 按行查看 历史
CornerOfSkyline 提交于 2024-10-19 17:57 . Add sim launch
from setuptools import find_packages, setup
from glob import glob
import os
package_name = 'x_launch'
setup(
name=package_name,
version='0.0.0',
packages=find_packages(exclude=['test']),
data_files=[
('share/ament_index/resource_index/packages',
['resource/' + package_name]),
('share/' + package_name, ['package.xml']),
(os.path.join('share', package_name, 'launch'), glob('launch/*.py')),
(os.path.join('share', package_name, 'launch'), glob('launch/*.launch')),
(os.path.join('share', package_name, 'config'), glob('config/*')),
(os.path.join('share', package_name, 'resource'), glob('resource/*')),
],
install_requires=['setuptools'],
zip_safe=True,
maintainer='zhangjianfei',
maintainer_email='zhangjianfei2005@126.com',
description='TODO: Package description',
license='TODO: License declaration',
tests_require=['pytest'],
entry_points={
'console_scripts': [
],
},
)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/autopilot-x/X-Launch.git
git@gitee.com:autopilot-x/X-Launch.git
autopilot-x
X-Launch
X-Launch
master

搜索帮助