From ee84984cc587cc8633edf2b87265ddd39a566242 Mon Sep 17 00:00:00 2001 From: Alex Tavarez Date: Thu, 25 Dec 2025 09:41:08 -0500 Subject: [PATCH] added constants for key paths referenced in rest of Python code --- whereami.py | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 whereami.py diff --git a/whereami.py b/whereami.py new file mode 100644 index 0000000..2418885 --- /dev/null +++ b/whereami.py @@ -0,0 +1,9 @@ +""" +Library of path constants to be used or referenced elsewhere. +""" + +from custtypes import ExecutedPath +from pathlib import Path + +USER_PATH: ExecutedPath = Path.home() +PROJ_ROOT: ExecutedPath = Path(__file__).parent.resolve() \ No newline at end of file