加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 1.41 KB
一键复制 编辑 原始数据 按行查看 历史
from setuptools import find_packages
from setuptools import setup
package_name = 'ament_package'
setup(
name=package_name,
version='0.12.0',
packages=find_packages(exclude=['test']),
data_files=[
('share/' + package_name, ['package.xml']),
('share/ament_index/resource_index/packages',
['resource/' + package_name]),
],
zip_safe=True,
author='Dirk Thomas',
author_email='dthomas@osrfoundation.org',
maintainer='Audrow Nash',
maintainer_email='audrow@openrobotics.org',
url='https://github.com/ament/ament_package/wiki',
download_url='https://github.com/ament/ament_package/releases',
keywords=['ROS'],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Topic :: Software Development',
],
description='Ament is a build system for federated packages.',
long_description="""\
Ament defines metainformation for packages, their dependencies,
and provides tooling to build these federated packages together.""",
license='Apache License, Version 2.0',
tests_require=['flake8', 'pytest'],
package_data={
'ament_package': [
'template/environment_hook/*',
'template/isolated_prefix_level/*',
'template/package_level/*',
'template/prefix_level/*',
],
},
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化