diff --git a/setup.cfg b/setup.cfg
index 1c5718325054fe2bd43edb212d0cc5f6734f097d..d8c509688b32ad44e88736c1179d67a2ab20395d 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,3 +1,4 @@
+# Generally describe the project
 [metadata]
 name = Secure Access Token Authorizer
 version = attr: _secureaccesstokenauthorizer.__version__
@@ -18,9 +19,13 @@ author-email = support@privatestorage.io
 platform = POSIX
 
 [options]
-package_dir=
+# All of the source is in the src directory.  The weird syntax is defining a
+# dict with a key "" and a value "src".
+package_dir =
     =src
-packages=find:
+# Use the automatic finder to pick up packages.  It is configured below.
+packages =
+    find:
 
 [options.packages.find]
-where=src
+where = src