-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
46 lines (38 loc) · 1.18 KB
/
setup.cfg
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
33
34
35
36
37
38
39
40
41
42
43
44
45
[metadata]
name = postfix_logsums
description = Produce Postfix MTA logfile summary
author = Frank Brehm
author_email = [email protected]
url = https://github.com/pixelpark/postfix-logsums
license = LGPL3+
platforms = posix
provides = postfix_logsums
classifiers =
Development Status :: 3 - Alpha
Environment :: Console
Intended Audience :: Developers
Intended Audience :: System Administrators
License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)
Natural Language :: English
Operating System :: POSIX
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Topic :: Communications :: Email :: Mail Transport Agents
Topic :: Software Development :: Libraries :: Python Modules
Topic :: System :: Systems Administration
[options]
packages=find:
[compile_catalog]
domain = postfix_logsums
directory = locale
statistics = 1
[pep8]
max-line-length = 99
[flake8]
max-line-length = 99
max-complexity = 20
ignore = E226,E302,E41,E402,W503