diff --git a/README.md b/README.md index 2066d6f..db03034 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,6 @@ pip install git+https://git.k-fortytwo.de/christofsteel/warp/ - ## Usage warp [-h] [--port PORT] [--host HOST] [--module] file @@ -20,4 +19,6 @@ --host HOST The host to bind to (default 0.0.0.0) --module, -m If set, loads a module instead of a file +## Sample + warp -m warp.samples.hooked diff --git a/setup.py b/setup.py index 9f51086..d22fd7d 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from setuptools import setup, find_packages setup( name='warp', version='0.0.1', - packages=['warp'], + packages=find_packages(), url='https://git.k-fortytwo.de/christofsteel/warp', license='MIT', author='Christoph Stahl', diff --git a/samples/__init__.py b/warp/samples/__init__.py similarity index 100% rename from samples/__init__.py rename to warp/samples/__init__.py diff --git a/samples/hooked.py b/warp/samples/hooked.py similarity index 100% rename from samples/hooked.py rename to warp/samples/hooked.py diff --git a/samples/subparsertest.py b/warp/samples/subparsertest.py similarity index 100% rename from samples/subparsertest.py rename to warp/samples/subparsertest.py diff --git a/samples/test.py b/warp/samples/test.py similarity index 100% rename from samples/test.py rename to warp/samples/test.py