From a2fb6fbdefd441f3f1faf0bf454cd26f38e0ecef Mon Sep 17 00:00:00 2001
From: Reid 'arrdem' McKenzie <me@arrdem.com>
Date: Tue, 3 Aug 2021 08:43:58 -0600
Subject: [PATCH] Add a setup.cfg for python projects

---
 setup.cfg | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)
 create mode 100644 setup.cfg

diff --git a/setup.cfg b/setup.cfg
new file mode 100644
index 0000000..d4c627e
--- /dev/null
+++ b/setup.cfg
@@ -0,0 +1,20 @@
+[isort]
+line_length=100
+indent=2
+# 1/Vertical
+multi_line_output=3
+lines_after_imports=2
+default_section=THIRDPARTY
+known_localfolder=datalog
+sections=FUTURE,STDLIB,LOCALFOLDER,THIRDPARTY
+force_sort_within_sections=1
+force_alphabetical_sort_within_sections=1
+combine_as_imports=1
+
+[distutils]
+index-servers = pypi
+
+[pypi]
+repository = https://pypi.python.org/pypi
+username = $pypi_user
+password = $pypi_pass