fix: Add `configure=True` for internal_config_repo (#1998)

Mark internal_config_repo as `configure = True` so that it won't be
vendored by Bazel vendor mode.

https://bazel.build/rules/lib/globals/bzl#parameters_7
diff --git a/python/private/internal_config_repo.bzl b/python/private/internal_config_repo.bzl
index 7be34ae..c37bc35 100644
--- a/python/private/internal_config_repo.bzl
+++ b/python/private/internal_config_repo.bzl
@@ -92,6 +92,7 @@
 
 internal_config_repo = repository_rule(
     implementation = _internal_config_repo_impl,
+    configure = True,
     environ = [_ENABLE_PYSTAR_ENVVAR_NAME],
 )