diff --git a/pyinfra/locations.py b/pyinfra/locations.py deleted file mode 100644 index 54c5a17..0000000 --- a/pyinfra/locations.py +++ /dev/null @@ -1,18 +0,0 @@ -"""Defines constant paths relative to the module root path.""" - -from pathlib import Path - - -MODULE_DIR = Path(__file__).resolve().parents[0] - -PACKAGE_ROOT_DIR = MODULE_DIR.parents[0] - -TEST_DIR = PACKAGE_ROOT_DIR / "test" - -CONFIG_FILE = PACKAGE_ROOT_DIR / "config.yaml" - -TEST_CONFIG_FILE = TEST_DIR / "config.yaml" - -COMPOSE_PATH = PACKAGE_ROOT_DIR - -BANNER_FILE = PACKAGE_ROOT_DIR / "banner.txt"