-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #21 from asmodehn/importer
Importer
- Loading branch information
Showing
107 changed files
with
598 additions
and
1,448 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,10 @@ | ||
*.pyc | ||
build | ||
dist | ||
.tox | ||
.hypothesis | ||
*.egg-info | ||
.cache | ||
.idea | ||
__pycache__ | ||
|
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,6 @@ | ||
[submodule "rosdeps/genmsg"] | ||
path = rosdeps/genmsg | ||
url = https://github.com/ros/genmsg.git | ||
[submodule "rosdeps/genpy"] | ||
path = rosdeps/genpy | ||
url = https://github.com/ros/genpy.git | ||
[submodule "rosdeps/std_msgs"] | ||
path = rosdeps/std_msgs | ||
[submodule "tests/rosdeps/std_msgs"] | ||
path = tests/rosdeps/std_msgs | ||
url = https://github.com/ros/std_msgs.git | ||
[submodule "tests/rosdeps/ros_comm_msgs"] | ||
path = tests/rosdeps/ros_comm_msgs | ||
url = https://github.com/ros/ros_comm_msgs.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# default | ||
include README.rst | ||
include setup.py |
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
|Code Issues| |Build Status| | ||
|
||
Pyros-msgs | ||
========== | ||
|
||
ROS Package enabling ROS communication for other Pyros multiprocess | ||
systems. | ||
|
||
Features | ||
-------- | ||
|
||
ROS | ||
~~~ | ||
|
||
- optional field as a ROS array | ||
- optional field as a specific message type (Work In Progress) | ||
|
||
.. |Code Issues| image:: https://www.quantifiedcode.com/api/v1/project/646d87c377144f1fa5c9a328a883c619/badge.svg | ||
:target: https://www.quantifiedcode.com/app/project/646d87c377144f1fa5c9a328a883c619 | ||
.. |Build Status| image:: https://travis-ci.org/asmodehn/pyros-msgs.svg?branch=master | ||
:target: https://travis-ci.org/asmodehn/pyros-msgs |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
pyros_msgs/msg |
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,15 +0,0 @@ | ||
from __future__ import absolute_import, division, print_function | ||
# This is a namespace package to merge the ROS generated messages and the python subpackage sources | ||
# Note : this file must be loaded first in order for other subpackages to be found | ||
# Note : this works for development packages only if pyros_setup has been activated | ||
# because it will put egg directories on pythonpath FIRST. | ||
|
||
# Ref : https://packaging.python.org/namespace_packages/ | ||
|
||
# pkgutil does not seem, somehow, to be compatible with ROS devel space... | ||
# import pkgutil | ||
# __path__ = pkgutil.extend_path(__path__, __name__) | ||
|
||
# Be aware : https://github.com/jonparrott/namespace-pkg-tests/blob/master/table.md | ||
import pkg_resources | ||
pkg_resources.declare_namespace(__name__) | ||
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.