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