certbot-dns-ionos/setup.py
2024-10-17 07:54:10 +02:00

57 lines
1.7 KiB
Python

from setuptools import setup
from setuptools import find_packages
version = '20241017'
install_requires = [
"acme>=1.8.0",
"certbot>=3.0.0",
"setuptools",
"requests",
"mock",
"requests-mock",
]
# read the contents of your README file
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, "README.md")) as f:
long_description = f.read()
setup(
name="certbot-dns-ionos",
version=version,
description="IONOS DNS Authenticator plugin for Certbot",
long_description=long_description,
long_description_content_type="text/x-rst",
url="https://github.com/helgeerbe/certbot-dns-ionos",
author="Helge Erbe",
author_email="helge@erbehome.de",
license="Apache License 2.0",
python_requires=">=3.12",
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 :: 3.12",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Security",
"Topic :: System :: Installation/Setup",
"Topic :: System :: Networking",
"Topic :: System :: Systems Administration",
"Topic :: Utilities",
],
packages=find_packages(),
include_package_data=True,
install_requires=install_requires,
entry_points={
"certbot.plugins": [
"dns-ionos = certbot_dns_ionos.dns_ionos:Authenticator"
]
},
test_suite="certbot_dns_ionos",
)