feat(add-data): Add general config and utilities for data prep

This commit is contained in:
Tobias Quadfasel
2024-08-31 14:15:53 +02:00
parent 49ff1bbfec
commit 596893edf3
2 changed files with 41 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
"""Global configuration for data preprocessing."""
from pathlib import Path
BASE_DIR = Path(__file__).resolve().parent.parent
DATA_DIR = BASE_DIR / "data"
APP_DIR = BASE_DIR / "app"