aboutsummaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2022-11-29 02:51:29 +0100
committerHugo Hörnquist <hugo@lysator.liu.se>2022-11-29 02:51:29 +0100
commit4587e5e124afcb13c81dea68e373420670d076b4 (patch)
tree91416ac5cb53dce9d80b466f66206a05c5a25a40 /setup.cfg
parentAdd makefile for ctags file. (diff)
downloadmu4web-4587e5e124afcb13c81dea68e373420670d076b4.tar.gz
mu4web-4587e5e124afcb13c81dea68e373420670d076b4.tar.xz
Properly specify version requirements, and add directory layout.
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg22
1 files changed, 22 insertions, 0 deletions
diff --git a/setup.cfg b/setup.cfg
index 1b76850..bf73722 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,2 +1,24 @@
+[metadata]
+name = mu4web
+version = attr: mu4web.VERSION
+description = Web interface for the mu Maildir indexer
+url = https://git.hornquist.se/mu4web
+author = Hugo Hörnquist
+author_email = hugo@lysator.liu.se
+classifiers =
+ Programming Language :: Python :: 3
+ Environment :: Web Environment
+
+[options]
+python_requires = >= 3.9
+install_requires =
+ flask >= 2.2.2
+ flask-login >= 0.6
+ urllib3 >= 1.26
+setup_requires =
+ setuptools
+py_modules = mu4web
+packages = mu4web
+
[flake8]
ignore = E731