From ab735e203fff6a203041f417169ef8ac4092b92f Mon Sep 17 00:00:00 2001 From: Lynn Date: Tue, 7 Feb 2023 23:54:13 +0100 Subject: [PATCH] Restructured project --- __init__.py => pillow_layout/__init__.py | 0 box.py => pillow_layout/box.py | 0 container.py => pillow_layout/container.py | 0 document.py => pillow_layout/document.py | 0 enums.py => pillow_layout/enums.py | 0 flex.py => pillow_layout/flex.py | 0 image.py => pillow_layout/image.py | 0 {internal => pillow_layout/internal}/flexlayouter.py | 0 {internal => pillow_layout/internal}/helpers.py | 0 {internal => pillow_layout/internal}/textlayouter.py | 0 layout.py => pillow_layout/layout.py | 0 text.py => pillow_layout/text.py | 0 12 files changed, 0 insertions(+), 0 deletions(-) rename __init__.py => pillow_layout/__init__.py (100%) rename box.py => pillow_layout/box.py (100%) rename container.py => pillow_layout/container.py (100%) rename document.py => pillow_layout/document.py (100%) rename enums.py => pillow_layout/enums.py (100%) rename flex.py => pillow_layout/flex.py (100%) rename image.py => pillow_layout/image.py (100%) rename {internal => pillow_layout/internal}/flexlayouter.py (100%) rename {internal => pillow_layout/internal}/helpers.py (100%) rename {internal => pillow_layout/internal}/textlayouter.py (100%) rename layout.py => pillow_layout/layout.py (100%) rename text.py => pillow_layout/text.py (100%) diff --git a/__init__.py b/pillow_layout/__init__.py similarity index 100% rename from __init__.py rename to pillow_layout/__init__.py diff --git a/box.py b/pillow_layout/box.py similarity index 100% rename from box.py rename to pillow_layout/box.py diff --git a/container.py b/pillow_layout/container.py similarity index 100% rename from container.py rename to pillow_layout/container.py diff --git a/document.py b/pillow_layout/document.py similarity index 100% rename from document.py rename to pillow_layout/document.py diff --git a/enums.py b/pillow_layout/enums.py similarity index 100% rename from enums.py rename to pillow_layout/enums.py diff --git a/flex.py b/pillow_layout/flex.py similarity index 100% rename from flex.py rename to pillow_layout/flex.py diff --git a/image.py b/pillow_layout/image.py similarity index 100% rename from image.py rename to pillow_layout/image.py diff --git a/internal/flexlayouter.py b/pillow_layout/internal/flexlayouter.py similarity index 100% rename from internal/flexlayouter.py rename to pillow_layout/internal/flexlayouter.py diff --git a/internal/helpers.py b/pillow_layout/internal/helpers.py similarity index 100% rename from internal/helpers.py rename to pillow_layout/internal/helpers.py diff --git a/internal/textlayouter.py b/pillow_layout/internal/textlayouter.py similarity index 100% rename from internal/textlayouter.py rename to pillow_layout/internal/textlayouter.py diff --git a/layout.py b/pillow_layout/layout.py similarity index 100% rename from layout.py rename to pillow_layout/layout.py diff --git a/text.py b/pillow_layout/text.py similarity index 100% rename from text.py rename to pillow_layout/text.py