added constants for key paths referenced in rest of Python code

This commit is contained in:
2025-12-25 09:41:08 -05:00
parent f5af9a7639
commit ee84984cc5

9
whereami.py Normal file
View File

@@ -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()