Skip to content

Commit

Permalink
Merge pull request #21 from asmodehn/importer
Browse files Browse the repository at this point in the history
Importer
  • Loading branch information
asmodehn authored Aug 8, 2017
2 parents 96c96c4 + e2b894e commit 56af94c
Show file tree
Hide file tree
Showing 107 changed files with 598 additions and 1,448 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
*.pyc
build
dist
.tox
.hypothesis
*.egg-info
.cache
.idea
__pycache__

13 changes: 5 additions & 8 deletions .gitmodules
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
23 changes: 20 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,34 @@
sudo: required
dist: trusty
language: python

branches:
except:
- gh-pages

env:
- ROS_DISTRO=indigo
- ROS_DISTRO=kinetic
# Not LTS
- ROS_DISTRO=lunar
# to get latest dependencies (not released in a ROS distro yet)
- ROS_DISTRO=latest

python:
# always test python2 (default supported python version for ROS1)
- 2.7
#- 3.4
# always test latest python3 (to guarantee recent python support)
- 3.6
#- pypy
#- pypy3

# Add specific python3 versions
matrix:
include:
# explicitely matching python version to the version on the ubuntu distro supported by the ROS LTS distro
- python: 3.4
env: ROS_DISTRO=indigo
- python: 3.5
env: ROS_DISTRO=kinetic

before_install:

install:
Expand Down
3 changes: 3 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# default
include README.rst
include setup.py
13 changes: 0 additions & 13 deletions README.md

This file was deleted.

21 changes: 21 additions & 0 deletions README.rst
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
1 change: 0 additions & 1 deletion dev-requirements.txt

This file was deleted.

1 change: 1 addition & 0 deletions msg
15 changes: 0 additions & 15 deletions pyros_msgs/__init__.py
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__)
39 changes: 0 additions & 39 deletions pyros_msgs/importer/__init__.py

This file was deleted.

Loading

0 comments on commit 56af94c

Please sign in to comment.