Skip to content

Commit

Permalink
moving version to base package.
Browse files Browse the repository at this point in the history
cleanup hypothesis data via manifest.
  • Loading branch information
asmodehn committed Sep 5, 2017
1 parent c44e1fd commit ce3c7c2
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 7 deletions.
3 changes: 2 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ include README.rst
include setup.py

# including tests in sdist
recursive-include tests *
recursive-include tests *
recursive-exclude tests .hypothesis
8 changes: 3 additions & 5 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
|Code Issues| |Build Status|
|Build Status|

Pyros-msgs
==========

ROS Package enabling ROS communication for other Pyros multiprocess
Package enabling ROS communication for other Pyros multiprocess
systems.

Features
Expand All @@ -13,9 +13,7 @@ ROS
~~~

- optional field as a ROS array
- optional field as a specific message type (Work In Progress)
- optional field indicated by a specific message type

.. |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
9 changes: 9 additions & 0 deletions pyros_msgs/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
from __future__ import absolute_import, print_function


from ._version import __version__, __version_info__

__all__ = [
'__version__',

]
File renamed without changes.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

# Ref : https://packaging.python.org/single_source_version/#single-sourcing-the-version
# runpy is safer and a beter habit than exec
version = runpy.run_path('pyros_msgs/typecheck/_version.py')
version = runpy.run_path('pyros_msgs/_version.py')
__version__ = version.get('__version__')


Expand Down

0 comments on commit ce3c7c2

Please sign in to comment.