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'))