add empty package
This commit is contained in:
30
setup.py
Normal file
30
setup.py
Normal file
@@ -0,0 +1,30 @@
|
||||
from setuptools import setup
|
||||
|
||||
package_name = "buildfarm"
|
||||
|
||||
data_files = [
|
||||
("share/ament_index/resource_index/packages", ["resource/" + package_name]),
|
||||
("share/" + package_name, ["package.xml"]),
|
||||
]
|
||||
|
||||
setup(
|
||||
name=package_name,
|
||||
version="0.0.0",
|
||||
packages=[package_name],
|
||||
data_files=data_files,
|
||||
install_requires=["setuptools", "ros2cli", "bringup_cli"],
|
||||
zip_safe=True,
|
||||
maintainer="Maik Knof",
|
||||
maintainer_email="mail@maikknof.de",
|
||||
description="ROS 2 CLI for building debian packages.",
|
||||
license="TODO: License declaration",
|
||||
tests_require=["pytest"],
|
||||
entry_points={
|
||||
# "ros2cli.command": [
|
||||
# "buildfarm = buildfarm.command:BuildfarmCommand",
|
||||
# ],
|
||||
# "ros2cli.extension_point": [
|
||||
# "buildfarm = ros2cli.command.CommandExtension",
|
||||
# ],
|
||||
},
|
||||
)
|
||||
Reference in New Issue
Block a user