From de482074e6a5245c3686076f4a694a1b317ff348 Mon Sep 17 00:00:00 2001 From: Fred Boniface Date: Fri, 16 Feb 2024 21:22:18 +0000 Subject: [PATCH] Introduce VENV --- .gitignore | 2 ++ pyvenv.cfg | 5 +++++ src/mailbox_mode.py | 2 ++ 3 files changed, 9 insertions(+) create mode 100644 pyvenv.cfg diff --git a/.gitignore b/.gitignore index 5d381cc..acaeaa9 100644 --- a/.gitignore +++ b/.gitignore @@ -17,6 +17,8 @@ eggs/ .eggs/ lib/ lib64/ +lib64 +bin parts/ sdist/ var/ diff --git a/pyvenv.cfg b/pyvenv.cfg new file mode 100644 index 0000000..c51e59c --- /dev/null +++ b/pyvenv.cfg @@ -0,0 +1,5 @@ +home = /usr/bin +include-system-site-packages = false +version = 3.11.7 +executable = /usr/bin/python3.11 +command = /usr/bin/python -m venv /home/fred.boniface/git/owlboard/diagram-parser diff --git a/src/mailbox_mode.py b/src/mailbox_mode.py index e69de29..33dddbb 100644 --- a/src/mailbox_mode.py +++ b/src/mailbox_mode.py @@ -0,0 +1,2 @@ +import imaplib +import email \ No newline at end of file