Files
certbot-dns-yeil/setup.py

21 lines
503 B
Python

from setuptools import setup, find_packages
setup(
name="certbot-dns-yeil",
version="3.1.0",
description="yeil DNS Authenticator plugin for Certbot",
url="https://git.eskimo.dev/Yeil/certbot-dns-yeil",
author="yeil",
license="MIT",
packages=find_packages(),
install_requires=[
"certbot>=1.1.0",
"zope.interface",
],
entry_points={
"certbot.plugins": [
"dns-yeil = certbot_dns_yeil.dns_yeil:Authenticator",
],
},
)