From 7c71171a399b6417b0a77ee0710ac11fd2fd2b71 Mon Sep 17 00:00:00 2001
From: Jean-Paul Calderone <exarkun@twistedmatrix.com>
Date: Fri, 7 Jun 2019 15:07:42 -0400
Subject: [PATCH] Some comments and formatting cleanup

---
 setup.cfg | 11 ++++++++---
 1 file changed, 8 insertions(+), 3 deletions(-)

diff --git a/setup.cfg b/setup.cfg
index 1c57183..d8c5096 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
-- 
GitLab