From 94e5aa772550743861aad03b73934ef1903e1110 Mon Sep 17 00:00:00 2001 From: Sergey Vartanov Date: Sun, 1 May 2022 23:29:54 +0300 Subject: [PATCH] Move contributing file. --- .github/CONTRIBUTING.md => CONTRIBUTING.md | 0 map_machine/doc/moire_manager.py | 4 ++-- 2 files changed, 2 insertions(+), 2 deletions(-) rename .github/CONTRIBUTING.md => CONTRIBUTING.md (100%) diff --git a/.github/CONTRIBUTING.md b/CONTRIBUTING.md similarity index 100% rename from .github/CONTRIBUTING.md rename to CONTRIBUTING.md diff --git a/map_machine/doc/moire_manager.py b/map_machine/doc/moire_manager.py index e5d4f60..c2213dc 100644 --- a/map_machine/doc/moire_manager.py +++ b/map_machine/doc/moire_manager.py @@ -301,5 +301,5 @@ def convert(input_path: Path, output_path: Path) -> None: if __name__ == "__main__": - convert(Path("doc/readme.moi"), Path("README.md")) - convert(Path("doc/contributing.moi"), Path(".github/CONTRIBUTING.md")) + for id_ in "readme", "contributing": + convert(Path("doc") / f"{id_}.moi", Path(f"{id_.upper()}.md"))