From 5f5175e6532800bdb6775364cf0f95c59d2a091a Mon Sep 17 00:00:00 2001 From: EKNr1 Date: Sat, 7 Dec 2024 18:12:37 +0100 Subject: [PATCH] Made the folder structure match more the Python package standards. --- .gitignore | 1 + wobbl_tools/__init__.py | 1 + buntcheck.py => wobbl_tools/buntcheck.py | 0 data_file.py => wobbl_tools/data_file.py | 0 {examples => wobbl_tools/examples}/examples.py | 0 {examples => wobbl_tools/examples}/gui.py | 0 infinite_matrix.py => wobbl_tools/infinite_matrix.py | 0 {math => wobbl_tools/math}/spvo.py | 0 {pygame_tools => wobbl_tools/pygame_tools}/__init__.py | 0 {pygame_tools => wobbl_tools/pygame_tools}/utils.py | 0 {pygame_tools => wobbl_tools/pygame_tools}/widgets/__init__.py | 0 {pygame_tools => wobbl_tools/pygame_tools}/widgets/button.py | 0 {pygame_tools => wobbl_tools/pygame_tools}/widgets/hover.py | 0 .../pygame_tools}/widgets/multiline_text.py | 0 .../pygame_tools}/widgets/text_button.py | 0 {pygame_tools => wobbl_tools/pygame_tools}/widgets/text_input.py | 0 16 files changed, 2 insertions(+) create mode 100644 .gitignore create mode 100644 wobbl_tools/__init__.py rename buntcheck.py => wobbl_tools/buntcheck.py (100%) rename data_file.py => wobbl_tools/data_file.py (100%) rename {examples => wobbl_tools/examples}/examples.py (100%) rename {examples => wobbl_tools/examples}/gui.py (100%) rename infinite_matrix.py => wobbl_tools/infinite_matrix.py (100%) rename {math => wobbl_tools/math}/spvo.py (100%) rename {pygame_tools => wobbl_tools/pygame_tools}/__init__.py (100%) rename {pygame_tools => wobbl_tools/pygame_tools}/utils.py (100%) rename {pygame_tools => wobbl_tools/pygame_tools}/widgets/__init__.py (100%) rename {pygame_tools => wobbl_tools/pygame_tools}/widgets/button.py (100%) rename {pygame_tools => wobbl_tools/pygame_tools}/widgets/hover.py (100%) rename {pygame_tools => wobbl_tools/pygame_tools}/widgets/multiline_text.py (100%) rename {pygame_tools => wobbl_tools/pygame_tools}/widgets/text_button.py (100%) rename {pygame_tools => wobbl_tools/pygame_tools}/widgets/text_input.py (100%) diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..65a0601 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +wobbl_tools/__pycache__ diff --git a/wobbl_tools/__init__.py b/wobbl_tools/__init__.py new file mode 100644 index 0000000..a93a4bf --- /dev/null +++ b/wobbl_tools/__init__.py @@ -0,0 +1 @@ +#!/usr/bin/python3 diff --git a/buntcheck.py b/wobbl_tools/buntcheck.py similarity index 100% rename from buntcheck.py rename to wobbl_tools/buntcheck.py diff --git a/data_file.py b/wobbl_tools/data_file.py similarity index 100% rename from data_file.py rename to wobbl_tools/data_file.py diff --git a/examples/examples.py b/wobbl_tools/examples/examples.py similarity index 100% rename from examples/examples.py rename to wobbl_tools/examples/examples.py diff --git a/examples/gui.py b/wobbl_tools/examples/gui.py similarity index 100% rename from examples/gui.py rename to wobbl_tools/examples/gui.py diff --git a/infinite_matrix.py b/wobbl_tools/infinite_matrix.py similarity index 100% rename from infinite_matrix.py rename to wobbl_tools/infinite_matrix.py diff --git a/math/spvo.py b/wobbl_tools/math/spvo.py similarity index 100% rename from math/spvo.py rename to wobbl_tools/math/spvo.py diff --git a/pygame_tools/__init__.py b/wobbl_tools/pygame_tools/__init__.py similarity index 100% rename from pygame_tools/__init__.py rename to wobbl_tools/pygame_tools/__init__.py diff --git a/pygame_tools/utils.py b/wobbl_tools/pygame_tools/utils.py similarity index 100% rename from pygame_tools/utils.py rename to wobbl_tools/pygame_tools/utils.py diff --git a/pygame_tools/widgets/__init__.py b/wobbl_tools/pygame_tools/widgets/__init__.py similarity index 100% rename from pygame_tools/widgets/__init__.py rename to wobbl_tools/pygame_tools/widgets/__init__.py diff --git a/pygame_tools/widgets/button.py b/wobbl_tools/pygame_tools/widgets/button.py similarity index 100% rename from pygame_tools/widgets/button.py rename to wobbl_tools/pygame_tools/widgets/button.py diff --git a/pygame_tools/widgets/hover.py b/wobbl_tools/pygame_tools/widgets/hover.py similarity index 100% rename from pygame_tools/widgets/hover.py rename to wobbl_tools/pygame_tools/widgets/hover.py diff --git a/pygame_tools/widgets/multiline_text.py b/wobbl_tools/pygame_tools/widgets/multiline_text.py similarity index 100% rename from pygame_tools/widgets/multiline_text.py rename to wobbl_tools/pygame_tools/widgets/multiline_text.py diff --git a/pygame_tools/widgets/text_button.py b/wobbl_tools/pygame_tools/widgets/text_button.py similarity index 100% rename from pygame_tools/widgets/text_button.py rename to wobbl_tools/pygame_tools/widgets/text_button.py diff --git a/pygame_tools/widgets/text_input.py b/wobbl_tools/pygame_tools/widgets/text_input.py similarity index 100% rename from pygame_tools/widgets/text_input.py rename to wobbl_tools/pygame_tools/widgets/text_input.py