From 86f899108ff0de4b09bffee1fa2ef4ee9671aa32 Mon Sep 17 00:00:00 2001 From: krzywon Date: Mon, 18 Sep 2023 17:51:08 +0100 Subject: [PATCH] Include an importable data path that points to the example data folder --- sasdata/__init__.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/sasdata/__init__.py b/sasdata/__init__.py index 8088f75..e2f8c43 100644 --- a/sasdata/__init__.py +++ b/sasdata/__init__.py @@ -1 +1,7 @@ +import os +from pathlib import Path + __version__ = "0.8.1" + +# An importable path to the example data to +data_path: Path = Path(os.path.join(Path(os.path.dirname(__file__)), 'example_data'))