|
| 1 | +[metadata] |
| 2 | +name = certbot-dns-stackit |
| 3 | +version = attr: PACKAGE_VERSION |
| 4 | +description = STACKIT DNS Authenticator plugin for Certbot |
| 5 | +long_description = file: README.md |
| 6 | +long_description_content_type = text/markdown |
| 7 | +url = https://github.com/stackitcloud/certbot-dns-stackit |
| 8 | +author = STACKIT DNS |
| 9 | +author_email = stackit-dns@mail.schwarz |
| 10 | +license = Apache License 2.0 |
| 11 | +classifiers = |
| 12 | + Development Status :: 5 - Production/Stable |
| 13 | + Environment :: Plugins |
| 14 | + Intended Audience :: System Administrators |
| 15 | + License :: OSI Approved :: Apache Software License |
| 16 | + Operating System :: POSIX :: Linux |
| 17 | + Programming Language :: Python |
| 18 | + Programming Language :: Python :: 3 |
| 19 | + Programming Language :: Python :: 3.4 |
| 20 | + Programming Language :: Python :: 3.5 |
| 21 | + Programming Language :: Python :: 3.6 |
| 22 | + Programming Language :: Python :: 3.7 |
| 23 | + Programming Language :: Python :: 3.8 |
| 24 | + Programming Language :: Python :: 3.9 |
| 25 | + Programming Language :: Python :: 3.10 |
| 26 | + Programming Language :: Python :: 3.11 |
| 27 | + Topic :: Internet :: WWW/HTTP |
| 28 | + Topic :: Security |
| 29 | + Topic :: System :: Installation/Setup |
| 30 | + Topic :: System :: Networking |
| 31 | + Topic :: System :: Systems Administration |
| 32 | + Topic :: Utilities |
| 33 | +python_requires = >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.* |
| 34 | + |
| 35 | +[options] |
| 36 | +packages = find: |
| 37 | +include_package_data = True |
| 38 | +install_requires = |
| 39 | + acme>=2.6.0 |
| 40 | + certbot>=2.6.0 |
| 41 | + setuptools |
| 42 | + requests |
| 43 | + mock |
| 44 | + requests-mock |
| 45 | + mypy |
| 46 | + mypy-extensions |
| 47 | + types-requests |
| 48 | + types-urllib3 |
| 49 | + flake8 |
| 50 | + pydocstyle |
| 51 | + black |
| 52 | + click==8.0.4 |
| 53 | + coverage |
| 54 | + |
| 55 | +[options.entry_points] |
| 56 | +certbot.plugins = |
| 57 | + dns-stackit = certbot_dns_stackit.stackit:Authenticator |
| 58 | + |
| 59 | +[options.packages.find] |
| 60 | +exclude = |
| 61 | + tests* |
0 commit comments