diff --git a/pyproject.toml b/pyproject.toml index cdbc078..cc23506 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ description = "python package that is supposed to handle networking and connecti authors = ["Frankcisco Schulz"] license = "All rights reserved" packages = [ - { include = "pyinfra"} + { include = "pyinfra", from = "src" } ] [tool.poetry.dependencies] diff --git a/pyinfra/__init__.py b/src/pyinfra/__init__.py similarity index 100% rename from pyinfra/__init__.py rename to src/pyinfra/__init__.py diff --git a/pyinfra/config.py b/src/pyinfra/config.py similarity index 100% rename from pyinfra/config.py rename to src/pyinfra/config.py diff --git a/pyinfra/k8s_probes/__init__.py b/src/pyinfra/k8s_probes/__init__.py similarity index 100% rename from pyinfra/k8s_probes/__init__.py rename to src/pyinfra/k8s_probes/__init__.py diff --git a/pyinfra/k8s_probes/startup.py b/src/pyinfra/k8s_probes/startup.py similarity index 100% rename from pyinfra/k8s_probes/startup.py rename to src/pyinfra/k8s_probes/startup.py diff --git a/pyinfra/queue/__init__.py b/src/pyinfra/queue/__init__.py similarity index 100% rename from pyinfra/queue/__init__.py rename to src/pyinfra/queue/__init__.py diff --git a/pyinfra/queue/queue_manager.py b/src/pyinfra/queue/queue_manager.py similarity index 100% rename from pyinfra/queue/queue_manager.py rename to src/pyinfra/queue/queue_manager.py diff --git a/pyinfra/storage/__init__.py b/src/pyinfra/storage/__init__.py similarity index 100% rename from pyinfra/storage/__init__.py rename to src/pyinfra/storage/__init__.py diff --git a/pyinfra/storage/adapters/__init__.py b/src/pyinfra/storage/adapters/__init__.py similarity index 100% rename from pyinfra/storage/adapters/__init__.py rename to src/pyinfra/storage/adapters/__init__.py diff --git a/pyinfra/storage/adapters/azure.py b/src/pyinfra/storage/adapters/azure.py similarity index 100% rename from pyinfra/storage/adapters/azure.py rename to src/pyinfra/storage/adapters/azure.py diff --git a/pyinfra/storage/adapters/s3.py b/src/pyinfra/storage/adapters/s3.py similarity index 100% rename from pyinfra/storage/adapters/s3.py rename to src/pyinfra/storage/adapters/s3.py diff --git a/pyinfra/storage/storage.py b/src/pyinfra/storage/storage.py similarity index 100% rename from pyinfra/storage/storage.py rename to src/pyinfra/storage/storage.py diff --git a/pyinfra/utils/__init__.py b/src/pyinfra/utils/__init__.py similarity index 100% rename from pyinfra/utils/__init__.py rename to src/pyinfra/utils/__init__.py