remove zope

This commit is contained in:
Alex Zorin
2022-06-11 09:26:20 +10:00
committed by tengattack
parent 0a36519efe
commit 91f28a82e0
3 changed files with 0 additions and 7 deletions

View File

@@ -1,13 +1,10 @@
"""DNS Authenticator for DNSPod DNS."""
import logging
import zope.interface
from requests.exceptions import HTTPError
from lexicon.providers import dnspod
from certbot import errors
from certbot import interfaces
from certbot.plugins import dns_common
from certbot.plugins import dns_common_lexicon
@@ -16,8 +13,6 @@ logger = logging.getLogger(__name__)
ACCOUNT_URL = 'https://www.dnspod.cn/console/user/security'
@zope.interface.implementer(interfaces.IAuthenticator)
@zope.interface.provider(interfaces.IPluginFactory)
class Authenticator(dns_common.DNSAuthenticator):
"""DNS Authenticator for DNSPod DNS

View File

@@ -14,7 +14,6 @@ install_requires = [
'dns-lexicon',
'mock',
'setuptools',
'zope.interface',
]
docs_extras = [

View File

@@ -2,4 +2,3 @@ acme>=0.21.1
dns-lexicon>=3.8.3
mock>=4.0.3
setuptools>=59.2.0
zope.interface>=5.4.0