aboutsummaryrefslogtreecommitdiff
path: root/setup.cfg
blob: aba19bff770ce90d1144b8e7c8736b7a8bafae7b (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
[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
# optionally natsort >= 8.2
setup_requires =
	setuptools
py_modules = mu4web
packages = mu4web

[flake8]
ignore = E731