mirror of
https://github.com/certbot/certbot.git
synced 2026-07-30 18:14:21 +02:00
Rename misc files
This commit is contained in:
+4
-4
@@ -1,12 +1,12 @@
|
||||
"""Example Let's Encrypt plugins.
|
||||
"""Example Certbot plugins.
|
||||
|
||||
For full examples, see `letsencrypt.plugins`.
|
||||
For full examples, see `certbot.plugins`.
|
||||
|
||||
"""
|
||||
import zope.interface
|
||||
|
||||
from letsencrypt import interfaces
|
||||
from letsencrypt.plugins import common
|
||||
from certbot import interfaces
|
||||
from certbot.plugins import common
|
||||
|
||||
|
||||
@zope.interface.implementer(interfaces.IAuthenticator)
|
||||
@@ -2,16 +2,16 @@ from setuptools import setup
|
||||
|
||||
|
||||
setup(
|
||||
name='letsencrypt-example-plugins',
|
||||
package='letsencrypt_example_plugins.py',
|
||||
name='certbot-example-plugins',
|
||||
package='certbot_example_plugins.py',
|
||||
install_requires=[
|
||||
'letsencrypt',
|
||||
'certbot',
|
||||
'zope.interface',
|
||||
],
|
||||
entry_points={
|
||||
'letsencrypt.plugins': [
|
||||
'example_authenticator = letsencrypt_example_plugins:Authenticator',
|
||||
'example_installer = letsencrypt_example_plugins:Installer',
|
||||
'certbot.plugins': [
|
||||
'example_authenticator = certbot_example_plugins:Authenticator',
|
||||
'example_installer = certbot_example_plugins:Installer',
|
||||
],
|
||||
},
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user