]> kaliko git repositories - sid.git/blobdiff - setup.cfg
Cleanup/modernize distribution
[sid.git] / setup.cfg
diff --git a/setup.cfg b/setup.cfg
new file mode 100644 (file)
index 0000000..ff5704a
--- /dev/null
+++ b/setup.cfg
@@ -0,0 +1,23 @@
+# Doc: https://setuptools.readthedocs.io/en/latest/setuptools.html#specifying-values
+
+[metadata]
+version = attr: sid.__version__
+long-description = file: README.rst
+license = GPL-3
+license_files = LICENSE
+keywords = xmpp, bot
+
+[options]
+packages = find:
+python_requires = >=3.7
+install_requires = slixmpp>=1.5.1
+
+[options.extras_require]
+feeds = feedparser>=5.2.1
+bts = python-debianbts>=3.0.1
+
+[sdist]
+formats = xztar, gztar
+
+[bdist_wheel]
+universal=1