project-orb / backend /config.py
SubhojitGhimire
initial commit
d2226ad
raw
history blame contribute delete
302 Bytes
import os
from pathlib import Path
class Settings:
BASE_DIR = Path(__file__).resolve().parent
DATA_DIR = BASE_DIR / "data"
EPHEMERIS_FILE = DATA_DIR / "de421.bsp"
HIPPARCOS_RAW = DATA_DIR / "hip_main.dat"
HIPPARCOS_PARQUET = DATA_DIR / "hipparcos.parquet"
settings = Settings()