-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.cfg
50 lines (46 loc) · 1.59 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
46
47
48
49
50
[options]
py_modules = certbot_dns_netcup
python_requires = >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*
install_requires =
certbot>=0.31.0
dns-lexicon>=3.2.3
[options.entry_points]
certbot.plugins =
dns-netcup = certbot_dns_netcup:Authenticator
[metadata]
name = certbot-dns-netcup
description = netcup DNS Authenticator plugin for Certbot
long_description = file: README.rst
author = Thomas Gläßle
author_email = [email protected]
license = Apache License 2.0
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Plugins
Intended Audience :: System Administrators
License :: OSI Approved :: Apache Software License
Operating System :: POSIX :: Linux
Programming Language :: Python
Programming Language :: Python :: 2
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Topic :: Internet :: WWW/HTTP
Topic :: Security
Topic :: System :: Installation/Setup
Topic :: System :: Networking
Topic :: System :: Systems Administration
Topic :: Utilities
long_description_content_type = text/x-rst
[bdist_wheel]
universal = 1
[flake8]
# codes: https://pycodestyle.readthedocs.io/en/latest/intro.html#error-codes
# default: ignore = E121,E123,E126,E133,E226,E241,E242,E704,W503,W504,W505
ignore = E221,E241,E251,E402
exclude = docs,.git,build,__pycache__,dist,.eggs
max-line-length = 83
max-complexity = 8