From b44b733090617a7fa56159777ebbb7b092b9c7d6 Mon Sep 17 00:00:00 2001 From: Francisco Schulz Date: Mon, 19 Sep 2022 17:16:12 +0200 Subject: [PATCH] Revert "test standard layout" This reverts commit ba27a7b1cad103d1c99041ad33693a4eaee0de7c. --- pyproject.toml | 2 +- {pyinfra => src/pyinfra}/__init__.py | 0 {pyinfra => src/pyinfra}/config.py | 0 {pyinfra => src/pyinfra}/k8s_probes/__init__.py | 0 {pyinfra => src/pyinfra}/k8s_probes/startup.py | 0 {pyinfra => src/pyinfra}/queue/__init__.py | 0 {pyinfra => src/pyinfra}/queue/queue_manager.py | 0 {pyinfra => src/pyinfra}/storage/__init__.py | 0 {pyinfra => src/pyinfra}/storage/adapters/__init__.py | 0 {pyinfra => src/pyinfra}/storage/adapters/azure.py | 0 {pyinfra => src/pyinfra}/storage/adapters/s3.py | 0 {pyinfra => src/pyinfra}/storage/storage.py | 0 {pyinfra => src/pyinfra}/utils/__init__.py | 0 13 files changed, 1 insertion(+), 1 deletion(-) rename {pyinfra => src/pyinfra}/__init__.py (100%) rename {pyinfra => src/pyinfra}/config.py (100%) rename {pyinfra => src/pyinfra}/k8s_probes/__init__.py (100%) rename {pyinfra => src/pyinfra}/k8s_probes/startup.py (100%) rename {pyinfra => src/pyinfra}/queue/__init__.py (100%) rename {pyinfra => src/pyinfra}/queue/queue_manager.py (100%) rename {pyinfra => src/pyinfra}/storage/__init__.py (100%) rename {pyinfra => src/pyinfra}/storage/adapters/__init__.py (100%) rename {pyinfra => src/pyinfra}/storage/adapters/azure.py (100%) rename {pyinfra => src/pyinfra}/storage/adapters/s3.py (100%) rename {pyinfra => src/pyinfra}/storage/storage.py (100%) rename {pyinfra => src/pyinfra}/utils/__init__.py (100%) 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