Skip to content

Commit

Permalink
bump version and polish text
Browse files Browse the repository at this point in the history
  • Loading branch information
Tobias Oberstein committed Apr 17, 2016
1 parent 678a7b6 commit e0f58d8
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 32 deletions.
13 changes: 9 additions & 4 deletions README.rst
@@ -1,13 +1,18 @@
Crossbar.io Crossbar.io
=========== ===========


| |Version| |Downloads| |Build Status| |Coverage| `Crossbar.io <http://crossbar.io>`__ is a networking platform for distributed
and microservice applications.

It is feature rich, scalable, robust and secure. Let Crossbar.io take care of
the hard parts of messaging so you can focus on your app's features.


-------------- | |Version| |Downloads| |Build Status| |Coverage|
`Crossbar.io <http://crossbar.io>`__ is an open-source `WAMP <http://wamp-proto.org/>`__ application router that allows to build advanced applications from loosely-coupled components that can talk in real-time with each other. Resources
---------


- Read more on the `Crossbar.io project homepage <http://crossbar.io>`__ - Read more on the `Project Homepage <http://crossbar.io>`__
- Jump into the `Quick Start <http://crossbar.io/docs/Quick-Start/>`__ - Jump into the `Quick Start <http://crossbar.io/docs/Quick-Start/>`__
- Checkout the complete `Documentation <http://crossbar.io/docs/>`__ - Checkout the complete `Documentation <http://crossbar.io/docs/>`__
- Join the `Mailing List <https://groups.google.com/forum/#!forum/crossbario>`__ - Join the `Mailing List <https://groups.google.com/forum/#!forum/crossbario>`__
Expand Down
31 changes: 3 additions & 28 deletions crossbar/__init__.py
Expand Up @@ -28,36 +28,11 @@
# #
##################################################################################### #####################################################################################


""" from __future__ import absolute_import
Crossbar.io - Unified application router.
Crossbar.io is an open-source server software that allows developers to create
distributed systems, composed of application components which are loosely coupled,
communicate in (soft) real-time and can be implemented in different languages.
Crossbar.io features:
- application routing core (RPC+PubSub)
- full WAMP v2 AP implementation
- application component hosting
- multi-process architecture
- and more
For more information, please go to
* Homepage: http://crossbar.io/
* Documentation: http://crossbar.io/docs
* Source code: https://github.com/crossbario/crossbar
Open-source licensed under the GNU Affero General Public License version 3.
Created by Tavendo GmbH. Get in contact at http://tavendo.com
"""

from __future__ import absolute_import, division


import txaio import txaio
txaio.use_twisted() txaio.use_twisted()


__version__ = "0.13.1" __version__ = '0.13.2'


__all__ = ["__version__"] __all__ = ('__version__',)

0 comments on commit e0f58d8

Please sign in to comment.