This repository has been archived on 2022-04-04. You can view files and clone it, but cannot push or open issues or pull requests.
ludum-dare-50/automation/project_root.py

11 lines
246 B
Python

"""Module to fetch the project root directory."""
import os
def get_project_root() -> str:
"""Gets the project root directory.
Returns:
str: The project root directory.
"""
return os.environ.get("LD50_PROJECT_ROOT")