-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
41 changed files
with
3,660 additions
and
214 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
# Copyright DB Netz AG and contributors | ||
# SPDX-License-Identifier: CC0-1.0 | ||
|
||
[submodule "capella_ros_tools/ros_interfaces/common_interfaces"] | ||
path = capella_ros_tools/ros_interfaces/common_interfaces | ||
[submodule "common_interfaces"] | ||
path = capella_ros_tools/msg_to_capella/ros_interfaces/common_interfaces | ||
url = https://github.com/ros2/common_interfaces.git | ||
[submodule "capella_ros_tools/ros_interfaces/rcl_interfaces"] | ||
path = capella_ros_tools/ros_interfaces/rcl_interfaces | ||
[submodule "rcl_interfaces"] | ||
path = capella_ros_tools/msg_to_capella/ros_interfaces/rcl_interfaces | ||
url = https://github.com/ros2/rcl_interfaces.git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
# Copyright DB Netz AG and contributors | ||
# SPDX-License-Identifier: Apache-2.0 | ||
"""The capella-ros-tools package.""" | ||
"""The capella_ros_tools package.""" | ||
|
||
from importlib import metadata | ||
|
||
try: | ||
__version__ = metadata.version("capella-ros-tools") | ||
__version__ = metadata.version("capella_ros_tools") | ||
except metadata.PackageNotFoundError: # pragma: no cover | ||
__version__ = "0.0.0+unknown" | ||
del metadata |
Oops, something went wrong.