From 854e17750438922a23fdd5f49fbaeb1c1abdf7e0 Mon Sep 17 00:00:00 2001 From: = <=> Date: Wed, 4 Feb 2026 17:38:42 +0100 Subject: [PATCH] initial setup --- Makefile | 13 +++++++++++++ mase.py | 1 + 2 files changed, 14 insertions(+) create mode 100644 Makefile create mode 100644 mase.py diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..dd76e6f --- /dev/null +++ b/Makefile @@ -0,0 +1,13 @@ +install: + +run: + +clean: + +lint: + flake8 . + mypy . --warn-return-any --warn-unused-ignores --ignore-missing-imports --disallow-untyped-defs --check-untyped-defs + +lint-strict: + flake8 . + mypy . --strict diff --git a/mase.py b/mase.py new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/mase.py @@ -0,0 +1 @@ + -- 2.52.0