20 lines
359 B
Python
20 lines
359 B
Python
"""Пути к seed-данным WESP (data/seed/)."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from pathlib import Path
|
|
|
|
_WESP_ROOT = Path(__file__).resolve().parents[2]
|
|
|
|
|
|
def seed_dir() -> Path:
|
|
return _WESP_ROOT / "data" / "seed"
|
|
|
|
|
|
def norms_dir() -> Path:
|
|
return seed_dir() / "norms"
|
|
|
|
|
|
def nutrients_dir() -> Path:
|
|
return seed_dir() / "nutrients"
|