forked from nikaro/wirelogd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
48 lines (43 loc) · 966 Bytes
/
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
46
47
48
[metadata]
name = wirelogd
version = 0.1.2
description = Try to log "connection state" of WireGuard client peers
long_description = file: README.md
long_description_content_type = text/markdown
url = https://openproject.u-pem.fr/projects/wireguard-logging-daemon/repository
author = Nicolas Karolak
author_email = [email protected]
license = WTFPL
license_file = LICENSE
[options]
packages = find:
install_requires=
setup_requires=
setuptools
wheel
[options.entry_points]
console_scripts=
wirelogd=wirelogd.main:main
[options.extras_require]
dev =
flake8
flake8-bandit
flake8-commas
flake8-docstrings
flake8-import-order
flake8-quotes
mypy
pylint
test =
pytest
pytest-cov
pytest-subprocess
[options.data_files]
etc = contrib/wirelogd.cfg
etc/systemd/system = contrib/wirelogd.service
etc/sudoers.d = contrib/wirelogd-nopasswd
[flake8]
exclude =
.venv/
ignore = W503
;max-line-length = 88