summaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
authorRob Dennis <robd@services-in.xr>2023-01-17 16:38:34 -0500
committerRob Dennis <robd@services-in.xr>2023-01-17 16:38:34 -0500
commit3323078a05d57bf99adb16a71b69fcbcd48146ea (patch)
tree3c7e56e41aa4d6bbd682e011b0b94043ac27c011 /setup.cfg
parent178ba90da21998968acb18cf02e7449741ddac4e (diff)
downloadconfigobj-git-3323078a05d57bf99adb16a71b69fcbcd48146ea.tar.gz
#128, #203 - re-implement the move to a configobj package done in master
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg28
1 files changed, 28 insertions, 0 deletions
diff --git a/setup.cfg b/setup.cfg
new file mode 100644
index 0000000..0c68fcd
--- /dev/null
+++ b/setup.cfg
@@ -0,0 +1,28 @@
+#
+# Configuration for setuptools
+#
+
+[egg_info]
+tag_build = .dev0
+tag_date = false
+
+
+[sdist]
+formats = zip
+
+
+[bdist_wheel]
+# If you set this to 1, make sure you have a proper Travis CI build matrix,
+# and that your Trove classifiers state you support Python 2 and 3
+universal = 1
+
+
+[tool:pytest]
+norecursedirs = .* *.egg *.egg-info bin dist include lib local share static docs
+python_files = src/tests/test_*.py
+#addopts =
+
+
+[flake8]
+#ignore = E226,…
+max-line-length = 132