Add documentation of community / Bazel team ownership (#308)

This adds a more nuanced CODEOWNERS and explains its purpose in CONTRIBUTING.md.

Fixes #291.
diff --git a/CODEOWNERS b/CODEOWNERS
index cf4beb1..79b887c 100644
--- a/CODEOWNERS
+++ b/CODEOWNERS
@@ -1 +1,19 @@
-* @brandjon @lberki
+# NB: Last matching rule takes precedence in CODEOWNERS.
+
+# Fall-through to community maintainers.
+* @thundergolfer @andyscott
+
+# Core Python rules belong to the Bazel team.
+/python/ @brandjon @lberki
+# But not everything under python/ is the core Python rules.
+/python/pip.bzl @thundergolfer @andyscott
+/python/whl.bzl @thundergolfer @andyscott
+/python/requirements.txt @thundergolfer @andyscott
+
+# The proposals dir corresponds to the Bazel proposals process, documented
+# here: https://bazel.build/designs/index.html
+/proposals/ @brandjon @lberki
+
+# Certain repo metadata files should stay as-is, particularly these.
+/LICENSE @brandjon @lberki
+/CONTRIBUTING.md @brandjon @lberki