From 34d9614d79faf1740b7f9c250e723de441a192ed Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Tue, 29 Sep 2020 10:07:15 -0700 Subject: [PATCH] Make a top-level turbot package This will be useful as we soon start splitting up the single turbot.py file into multiple modules that want to include things from each other. --- Makefile | 2 +- turbot/__init__.py | 0 turbot.py => turbot/turbot.py | 0 3 files changed, 1 insertion(+), 1 deletion(-) create mode 100644 turbot/__init__.py rename turbot.py => turbot/turbot.py (100%) diff --git a/Makefile b/Makefile index d38a9a9..d0719d8 100644 --- a/Makefile +++ b/Makefile @@ -52,7 +52,7 @@ endif pip-compile --no-index --generate-hashes --allow-unsafe run: require-venv - FLASK_APP=turbot FLASK_DEBUG=true flask run + FLASK_APP=turbot.turbot FLASK_DEBUG=true flask run turbot.wsgi: turbot.wsgi.in Makefile envsubst < turbot.wsgi.in > turbot.wsgi diff --git a/turbot/__init__.py b/turbot/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/turbot.py b/turbot/turbot.py similarity index 100% rename from turbot.py rename to turbot/turbot.py -- 2.43.0