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
|
[options]
py_modules = certbot_dns_netcup
python_requires = >=3.7
install_requires =
certbot>=2.7
requests
[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 = thomas@coldfix.de
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 :: 3
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
|