Add a default MODULE.bazel file
Some versions of `bazel` have started generating a `MODULE.bazel` file
in preparation for the migration to `bzlmod`. This adds the default file
for now and updates `.gitignore` to ignore the associated lock file.
diff --git a/.gitignore b/.gitignore
index 972d59f..534b538 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,7 @@
+# Bazel
bazel-*
+MODULE.bazel.lock
+
+# Python
__pycache__
+
diff --git a/MODULE.bazel b/MODULE.bazel
new file mode 100644
index 0000000..00bb183
--- /dev/null
+++ b/MODULE.bazel
@@ -0,0 +1,6 @@
+###############################################################################
+# Bazel now uses Bzlmod by default to manage external dependencies.
+# Please consider migrating your external dependencies from WORKSPACE to MODULE.bazel.
+#
+# For more details, please check https://github.com/bazelbuild/bazel/issues/18958
+###############################################################################