aboutsummaryrefslogtreecommitdiff
path: root/setup.cfg
blob: d8756daebf27deaa573be0b46c75c01876c06ffe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[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
	License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
license = AGPL3+
license_files =
	LICENSE

[options]
python_requires = >= 3.9
install_requires =
	flask >= 2.2.2
	flask-login >= 0.6
	urllib3 >= 1.26
	pyxdg >= 0.28
# optionally natsort >= 8.2
# python-pam >= 2.0.2 for pam integration
setup_requires =
	setuptools
py_modules = mu4web
packages = mu4web

[flake8]
ignore = E731
max-line-length = 100