From 60aa6c6af6b3743ea40da979f487fdc4b0808632 Mon Sep 17 00:00:00 2001 From: Tobias Oberstein Date: Tue, 10 Mar 2015 00:15:32 +0100 Subject: [PATCH] moved package content to repo root --- autobahn/MANIFEST.in => MANIFEST.in | 0 autobahn/Makefile => Makefile | 8 +++---- autobahn/README.rst => README.rst | 0 autobahn/LICENSE | 21 ------------------- autobahn/{autobahn => }/__init__.py | 0 autobahn/{autobahn => }/asyncio/__init__.py | 0 autobahn/{autobahn => }/asyncio/wamp.py | 0 autobahn/{autobahn => }/asyncio/websocket.py | 0 autobahn/{autobahn => }/twisted/__init__.py | 0 .../{autobahn => }/twisted/choosereactor.py | 0 .../{autobahn => }/twisted/flashpolicy.py | 0 autobahn/{autobahn => }/twisted/forwarder.py | 0 autobahn/{autobahn => }/twisted/longpoll.py | 0 autobahn/{autobahn => }/twisted/rawsocket.py | 0 autobahn/{autobahn => }/twisted/resource.py | 0 .../{autobahn => }/twisted/test/__init__.py | 0 .../twisted/test/test_application_runner.py | 0 autobahn/{autobahn => }/twisted/util.py | 0 autobahn/{autobahn => }/twisted/wamp.py | 0 autobahn/{autobahn => }/twisted/websocket.py | 0 autobahn/{autobahn => }/util.py | 0 autobahn/{autobahn => }/wamp/__init__.py | 0 autobahn/{autobahn => }/wamp/auth.py | 0 autobahn/{autobahn => }/wamp/exception.py | 0 autobahn/{autobahn => }/wamp/interfaces.py | 0 autobahn/{autobahn => }/wamp/message.py | 0 autobahn/{autobahn => }/wamp/protocol.py | 0 autobahn/{autobahn => }/wamp/role.py | 0 autobahn/{autobahn => }/wamp/serializer.py | 0 autobahn/{autobahn => }/wamp/test/__init__.py | 0 .../{autobahn => }/wamp/test/test_auth.py | 0 .../wamp/test/test_component.py | 0 .../{autobahn => }/wamp/test/test_message.py | 0 .../{autobahn => }/wamp/test/test_protocol.py | 0 .../wamp/test/test_protocol_peer.py | 0 .../{autobahn => }/wamp/test/test_runner.py | 0 .../wamp/test/test_serializer.py | 0 .../wamp/test/test_uri_pattern.py | 0 autobahn/{autobahn => }/wamp/types.py | 0 autobahn/{autobahn => }/wamp/uri.py | 0 autobahn/{autobahn => }/wamp/websocket.py | 0 autobahn/{autobahn => }/websocket/__init__.py | 0 autobahn/{autobahn => }/websocket/compress.py | 0 .../{autobahn => }/websocket/compress_base.py | 0 .../websocket/compress_bzip2.py | 0 .../websocket/compress_deflate.py | 0 .../websocket/compress_snappy.py | 0 autobahn/{autobahn => }/websocket/http.py | 0 .../{autobahn => }/websocket/interfaces.py | 0 autobahn/{autobahn => }/websocket/protocol.py | 0 .../{autobahn => }/websocket/test/__init__.py | 0 .../websocket/test/test_websocket_url.py | 0 .../{autobahn => }/websocket/useragent.py | 0 .../{autobahn => }/websocket/utf8validator.py | 0 .../{autobahn => }/websocket/xormasker.py | 0 autobahn/setup.py => setup.py | 0 autobahn/tox.ini => tox.ini | 0 .../plugins/autobahn_endpoints.py | 0 .../plugins/autobahn_twistd.py | 0 59 files changed, 4 insertions(+), 25 deletions(-) rename autobahn/MANIFEST.in => MANIFEST.in (100%) rename autobahn/Makefile => Makefile (94%) rename autobahn/README.rst => README.rst (100%) delete mode 100644 autobahn/LICENSE rename autobahn/{autobahn => }/__init__.py (100%) rename autobahn/{autobahn => }/asyncio/__init__.py (100%) rename autobahn/{autobahn => }/asyncio/wamp.py (100%) rename autobahn/{autobahn => }/asyncio/websocket.py (100%) rename autobahn/{autobahn => }/twisted/__init__.py (100%) rename autobahn/{autobahn => }/twisted/choosereactor.py (100%) rename autobahn/{autobahn => }/twisted/flashpolicy.py (100%) rename autobahn/{autobahn => }/twisted/forwarder.py (100%) rename autobahn/{autobahn => }/twisted/longpoll.py (100%) rename autobahn/{autobahn => }/twisted/rawsocket.py (100%) rename autobahn/{autobahn => }/twisted/resource.py (100%) rename autobahn/{autobahn => }/twisted/test/__init__.py (100%) rename autobahn/{autobahn => }/twisted/test/test_application_runner.py (100%) rename autobahn/{autobahn => }/twisted/util.py (100%) rename autobahn/{autobahn => }/twisted/wamp.py (100%) rename autobahn/{autobahn => }/twisted/websocket.py (100%) rename autobahn/{autobahn => }/util.py (100%) rename autobahn/{autobahn => }/wamp/__init__.py (100%) rename autobahn/{autobahn => }/wamp/auth.py (100%) rename autobahn/{autobahn => }/wamp/exception.py (100%) rename autobahn/{autobahn => }/wamp/interfaces.py (100%) rename autobahn/{autobahn => }/wamp/message.py (100%) rename autobahn/{autobahn => }/wamp/protocol.py (100%) rename autobahn/{autobahn => }/wamp/role.py (100%) rename autobahn/{autobahn => }/wamp/serializer.py (100%) rename autobahn/{autobahn => }/wamp/test/__init__.py (100%) rename autobahn/{autobahn => }/wamp/test/test_auth.py (100%) rename autobahn/{autobahn => }/wamp/test/test_component.py (100%) rename autobahn/{autobahn => }/wamp/test/test_message.py (100%) rename autobahn/{autobahn => }/wamp/test/test_protocol.py (100%) rename autobahn/{autobahn => }/wamp/test/test_protocol_peer.py (100%) rename autobahn/{autobahn => }/wamp/test/test_runner.py (100%) rename autobahn/{autobahn => }/wamp/test/test_serializer.py (100%) rename autobahn/{autobahn => }/wamp/test/test_uri_pattern.py (100%) rename autobahn/{autobahn => }/wamp/types.py (100%) rename autobahn/{autobahn => }/wamp/uri.py (100%) rename autobahn/{autobahn => }/wamp/websocket.py (100%) rename autobahn/{autobahn => }/websocket/__init__.py (100%) rename autobahn/{autobahn => }/websocket/compress.py (100%) rename autobahn/{autobahn => }/websocket/compress_base.py (100%) rename autobahn/{autobahn => }/websocket/compress_bzip2.py (100%) rename autobahn/{autobahn => }/websocket/compress_deflate.py (100%) rename autobahn/{autobahn => }/websocket/compress_snappy.py (100%) rename autobahn/{autobahn => }/websocket/http.py (100%) rename autobahn/{autobahn => }/websocket/interfaces.py (100%) rename autobahn/{autobahn => }/websocket/protocol.py (100%) rename autobahn/{autobahn => }/websocket/test/__init__.py (100%) rename autobahn/{autobahn => }/websocket/test/test_websocket_url.py (100%) rename autobahn/{autobahn => }/websocket/useragent.py (100%) rename autobahn/{autobahn => }/websocket/utf8validator.py (100%) rename autobahn/{autobahn => }/websocket/xormasker.py (100%) rename autobahn/setup.py => setup.py (100%) rename autobahn/tox.ini => tox.ini (100%) rename {autobahn/twisted => twisted}/plugins/autobahn_endpoints.py (100%) rename {autobahn/twisted => twisted}/plugins/autobahn_twistd.py (100%) diff --git a/autobahn/MANIFEST.in b/MANIFEST.in similarity index 100% rename from autobahn/MANIFEST.in rename to MANIFEST.in diff --git a/autobahn/Makefile b/Makefile similarity index 94% rename from autobahn/Makefile rename to Makefile index 04bb9eb2..397e3e31 100644 --- a/autobahn/Makefile +++ b/Makefile @@ -77,19 +77,19 @@ pyflakes: # run PEP8 check and print statistics pep8: - pep8 --statistics --ignore=E501 -qq . + pep8 --statistics --ignore=E501 -qq autobahn # run PEP8 check and show source for offending code pep8show: - pep8 --show-source --ignore=E501 . + pep8 --show-source --ignore=E501 autobahn # run autopep8 to automatically transform offending code autopep8: - autopep8 -ri --aggressive . + autopep8 -ri --aggressive autobahn # This will run pep8, pyflakes and can skip lines that end with # noqa flake8: - flake8 --ignore=E501 . + flake8 --ignore=E501 autobahn # run PyLint pylint: diff --git a/autobahn/README.rst b/README.rst similarity index 100% rename from autobahn/README.rst rename to README.rst diff --git a/autobahn/LICENSE b/autobahn/LICENSE deleted file mode 100644 index 99e2fed3..00000000 --- a/autobahn/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -The MIT License (MIT) - -Copyright (c) Tavendo GmbH - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. diff --git a/autobahn/autobahn/__init__.py b/autobahn/__init__.py similarity index 100% rename from autobahn/autobahn/__init__.py rename to autobahn/__init__.py diff --git a/autobahn/autobahn/asyncio/__init__.py b/autobahn/asyncio/__init__.py similarity index 100% rename from autobahn/autobahn/asyncio/__init__.py rename to autobahn/asyncio/__init__.py diff --git a/autobahn/autobahn/asyncio/wamp.py b/autobahn/asyncio/wamp.py similarity index 100% rename from autobahn/autobahn/asyncio/wamp.py rename to autobahn/asyncio/wamp.py diff --git a/autobahn/autobahn/asyncio/websocket.py b/autobahn/asyncio/websocket.py similarity index 100% rename from autobahn/autobahn/asyncio/websocket.py rename to autobahn/asyncio/websocket.py diff --git a/autobahn/autobahn/twisted/__init__.py b/autobahn/twisted/__init__.py similarity index 100% rename from autobahn/autobahn/twisted/__init__.py rename to autobahn/twisted/__init__.py diff --git a/autobahn/autobahn/twisted/choosereactor.py b/autobahn/twisted/choosereactor.py similarity index 100% rename from autobahn/autobahn/twisted/choosereactor.py rename to autobahn/twisted/choosereactor.py diff --git a/autobahn/autobahn/twisted/flashpolicy.py b/autobahn/twisted/flashpolicy.py similarity index 100% rename from autobahn/autobahn/twisted/flashpolicy.py rename to autobahn/twisted/flashpolicy.py diff --git a/autobahn/autobahn/twisted/forwarder.py b/autobahn/twisted/forwarder.py similarity index 100% rename from autobahn/autobahn/twisted/forwarder.py rename to autobahn/twisted/forwarder.py diff --git a/autobahn/autobahn/twisted/longpoll.py b/autobahn/twisted/longpoll.py similarity index 100% rename from autobahn/autobahn/twisted/longpoll.py rename to autobahn/twisted/longpoll.py diff --git a/autobahn/autobahn/twisted/rawsocket.py b/autobahn/twisted/rawsocket.py similarity index 100% rename from autobahn/autobahn/twisted/rawsocket.py rename to autobahn/twisted/rawsocket.py diff --git a/autobahn/autobahn/twisted/resource.py b/autobahn/twisted/resource.py similarity index 100% rename from autobahn/autobahn/twisted/resource.py rename to autobahn/twisted/resource.py diff --git a/autobahn/autobahn/twisted/test/__init__.py b/autobahn/twisted/test/__init__.py similarity index 100% rename from autobahn/autobahn/twisted/test/__init__.py rename to autobahn/twisted/test/__init__.py diff --git a/autobahn/autobahn/twisted/test/test_application_runner.py b/autobahn/twisted/test/test_application_runner.py similarity index 100% rename from autobahn/autobahn/twisted/test/test_application_runner.py rename to autobahn/twisted/test/test_application_runner.py diff --git a/autobahn/autobahn/twisted/util.py b/autobahn/twisted/util.py similarity index 100% rename from autobahn/autobahn/twisted/util.py rename to autobahn/twisted/util.py diff --git a/autobahn/autobahn/twisted/wamp.py b/autobahn/twisted/wamp.py similarity index 100% rename from autobahn/autobahn/twisted/wamp.py rename to autobahn/twisted/wamp.py diff --git a/autobahn/autobahn/twisted/websocket.py b/autobahn/twisted/websocket.py similarity index 100% rename from autobahn/autobahn/twisted/websocket.py rename to autobahn/twisted/websocket.py diff --git a/autobahn/autobahn/util.py b/autobahn/util.py similarity index 100% rename from autobahn/autobahn/util.py rename to autobahn/util.py diff --git a/autobahn/autobahn/wamp/__init__.py b/autobahn/wamp/__init__.py similarity index 100% rename from autobahn/autobahn/wamp/__init__.py rename to autobahn/wamp/__init__.py diff --git a/autobahn/autobahn/wamp/auth.py b/autobahn/wamp/auth.py similarity index 100% rename from autobahn/autobahn/wamp/auth.py rename to autobahn/wamp/auth.py diff --git a/autobahn/autobahn/wamp/exception.py b/autobahn/wamp/exception.py similarity index 100% rename from autobahn/autobahn/wamp/exception.py rename to autobahn/wamp/exception.py diff --git a/autobahn/autobahn/wamp/interfaces.py b/autobahn/wamp/interfaces.py similarity index 100% rename from autobahn/autobahn/wamp/interfaces.py rename to autobahn/wamp/interfaces.py diff --git a/autobahn/autobahn/wamp/message.py b/autobahn/wamp/message.py similarity index 100% rename from autobahn/autobahn/wamp/message.py rename to autobahn/wamp/message.py diff --git a/autobahn/autobahn/wamp/protocol.py b/autobahn/wamp/protocol.py similarity index 100% rename from autobahn/autobahn/wamp/protocol.py rename to autobahn/wamp/protocol.py diff --git a/autobahn/autobahn/wamp/role.py b/autobahn/wamp/role.py similarity index 100% rename from autobahn/autobahn/wamp/role.py rename to autobahn/wamp/role.py diff --git a/autobahn/autobahn/wamp/serializer.py b/autobahn/wamp/serializer.py similarity index 100% rename from autobahn/autobahn/wamp/serializer.py rename to autobahn/wamp/serializer.py diff --git a/autobahn/autobahn/wamp/test/__init__.py b/autobahn/wamp/test/__init__.py similarity index 100% rename from autobahn/autobahn/wamp/test/__init__.py rename to autobahn/wamp/test/__init__.py diff --git a/autobahn/autobahn/wamp/test/test_auth.py b/autobahn/wamp/test/test_auth.py similarity index 100% rename from autobahn/autobahn/wamp/test/test_auth.py rename to autobahn/wamp/test/test_auth.py diff --git a/autobahn/autobahn/wamp/test/test_component.py b/autobahn/wamp/test/test_component.py similarity index 100% rename from autobahn/autobahn/wamp/test/test_component.py rename to autobahn/wamp/test/test_component.py diff --git a/autobahn/autobahn/wamp/test/test_message.py b/autobahn/wamp/test/test_message.py similarity index 100% rename from autobahn/autobahn/wamp/test/test_message.py rename to autobahn/wamp/test/test_message.py diff --git a/autobahn/autobahn/wamp/test/test_protocol.py b/autobahn/wamp/test/test_protocol.py similarity index 100% rename from autobahn/autobahn/wamp/test/test_protocol.py rename to autobahn/wamp/test/test_protocol.py diff --git a/autobahn/autobahn/wamp/test/test_protocol_peer.py b/autobahn/wamp/test/test_protocol_peer.py similarity index 100% rename from autobahn/autobahn/wamp/test/test_protocol_peer.py rename to autobahn/wamp/test/test_protocol_peer.py diff --git a/autobahn/autobahn/wamp/test/test_runner.py b/autobahn/wamp/test/test_runner.py similarity index 100% rename from autobahn/autobahn/wamp/test/test_runner.py rename to autobahn/wamp/test/test_runner.py diff --git a/autobahn/autobahn/wamp/test/test_serializer.py b/autobahn/wamp/test/test_serializer.py similarity index 100% rename from autobahn/autobahn/wamp/test/test_serializer.py rename to autobahn/wamp/test/test_serializer.py diff --git a/autobahn/autobahn/wamp/test/test_uri_pattern.py b/autobahn/wamp/test/test_uri_pattern.py similarity index 100% rename from autobahn/autobahn/wamp/test/test_uri_pattern.py rename to autobahn/wamp/test/test_uri_pattern.py diff --git a/autobahn/autobahn/wamp/types.py b/autobahn/wamp/types.py similarity index 100% rename from autobahn/autobahn/wamp/types.py rename to autobahn/wamp/types.py diff --git a/autobahn/autobahn/wamp/uri.py b/autobahn/wamp/uri.py similarity index 100% rename from autobahn/autobahn/wamp/uri.py rename to autobahn/wamp/uri.py diff --git a/autobahn/autobahn/wamp/websocket.py b/autobahn/wamp/websocket.py similarity index 100% rename from autobahn/autobahn/wamp/websocket.py rename to autobahn/wamp/websocket.py diff --git a/autobahn/autobahn/websocket/__init__.py b/autobahn/websocket/__init__.py similarity index 100% rename from autobahn/autobahn/websocket/__init__.py rename to autobahn/websocket/__init__.py diff --git a/autobahn/autobahn/websocket/compress.py b/autobahn/websocket/compress.py similarity index 100% rename from autobahn/autobahn/websocket/compress.py rename to autobahn/websocket/compress.py diff --git a/autobahn/autobahn/websocket/compress_base.py b/autobahn/websocket/compress_base.py similarity index 100% rename from autobahn/autobahn/websocket/compress_base.py rename to autobahn/websocket/compress_base.py diff --git a/autobahn/autobahn/websocket/compress_bzip2.py b/autobahn/websocket/compress_bzip2.py similarity index 100% rename from autobahn/autobahn/websocket/compress_bzip2.py rename to autobahn/websocket/compress_bzip2.py diff --git a/autobahn/autobahn/websocket/compress_deflate.py b/autobahn/websocket/compress_deflate.py similarity index 100% rename from autobahn/autobahn/websocket/compress_deflate.py rename to autobahn/websocket/compress_deflate.py diff --git a/autobahn/autobahn/websocket/compress_snappy.py b/autobahn/websocket/compress_snappy.py similarity index 100% rename from autobahn/autobahn/websocket/compress_snappy.py rename to autobahn/websocket/compress_snappy.py diff --git a/autobahn/autobahn/websocket/http.py b/autobahn/websocket/http.py similarity index 100% rename from autobahn/autobahn/websocket/http.py rename to autobahn/websocket/http.py diff --git a/autobahn/autobahn/websocket/interfaces.py b/autobahn/websocket/interfaces.py similarity index 100% rename from autobahn/autobahn/websocket/interfaces.py rename to autobahn/websocket/interfaces.py diff --git a/autobahn/autobahn/websocket/protocol.py b/autobahn/websocket/protocol.py similarity index 100% rename from autobahn/autobahn/websocket/protocol.py rename to autobahn/websocket/protocol.py diff --git a/autobahn/autobahn/websocket/test/__init__.py b/autobahn/websocket/test/__init__.py similarity index 100% rename from autobahn/autobahn/websocket/test/__init__.py rename to autobahn/websocket/test/__init__.py diff --git a/autobahn/autobahn/websocket/test/test_websocket_url.py b/autobahn/websocket/test/test_websocket_url.py similarity index 100% rename from autobahn/autobahn/websocket/test/test_websocket_url.py rename to autobahn/websocket/test/test_websocket_url.py diff --git a/autobahn/autobahn/websocket/useragent.py b/autobahn/websocket/useragent.py similarity index 100% rename from autobahn/autobahn/websocket/useragent.py rename to autobahn/websocket/useragent.py diff --git a/autobahn/autobahn/websocket/utf8validator.py b/autobahn/websocket/utf8validator.py similarity index 100% rename from autobahn/autobahn/websocket/utf8validator.py rename to autobahn/websocket/utf8validator.py diff --git a/autobahn/autobahn/websocket/xormasker.py b/autobahn/websocket/xormasker.py similarity index 100% rename from autobahn/autobahn/websocket/xormasker.py rename to autobahn/websocket/xormasker.py diff --git a/autobahn/setup.py b/setup.py similarity index 100% rename from autobahn/setup.py rename to setup.py diff --git a/autobahn/tox.ini b/tox.ini similarity index 100% rename from autobahn/tox.ini rename to tox.ini diff --git a/autobahn/twisted/plugins/autobahn_endpoints.py b/twisted/plugins/autobahn_endpoints.py similarity index 100% rename from autobahn/twisted/plugins/autobahn_endpoints.py rename to twisted/plugins/autobahn_endpoints.py diff --git a/autobahn/twisted/plugins/autobahn_twistd.py b/twisted/plugins/autobahn_twistd.py similarity index 100% rename from autobahn/twisted/plugins/autobahn_twistd.py rename to twisted/plugins/autobahn_twistd.py