summaryrefslogtreecommitdiffstats
path: root/setup.cfg
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2020-03-24 23:39:30 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2020-03-24 23:39:30 +0000
commitcf4143c075460101d46e4f1b28ad42c89cdf008b (patch)
tree23aea1402329cd367a6ee77c19bab26b0c8fd081 /setup.cfg
parentInitial commit. (diff)
downloadcfgv-cf4143c075460101d46e4f1b28ad42c89cdf008b.tar.xz
cfgv-cf4143c075460101d46e4f1b28ad42c89cdf008b.zip
Adding upstream version 3.1.0.upstream/3.1.0
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg27
1 files changed, 27 insertions, 0 deletions
diff --git a/setup.cfg b/setup.cfg
new file mode 100644
index 0000000..ce6e897
--- /dev/null
+++ b/setup.cfg
@@ -0,0 +1,27 @@
+[metadata]
+name = cfgv
+version = 3.1.0
+description = Validate configuration and produce human readable error messages.
+long_description = file: README.md
+long_description_content_type = text/markdown
+url = https://github.com/asottile/cfgv
+author = Anthony Sottile
+author_email = asottile@umich.edu
+license = MIT
+license_file = LICENSE
+classifiers =
+ License :: OSI Approved :: MIT License
+ Programming Language :: Python :: 3
+ Programming Language :: Python :: 3 :: Only
+ Programming Language :: Python :: 3.6
+ Programming Language :: Python :: 3.7
+ Programming Language :: Python :: 3.8
+ Programming Language :: Python :: Implementation :: CPython
+ Programming Language :: Python :: Implementation :: PyPy
+
+[options]
+py_modules = cfgv
+python_requires = >=3.6.1
+
+[bdist_wheel]
+universal = True