mirror of
https://github.com/certbot/certbot.git
synced 2026-01-13 10:22:20 +03:00
17 lines
349 B
Python
17 lines
349 B
Python
from setuptools import setup
|
|
|
|
|
|
setup(
|
|
name='letsencrypt-example-plugins',
|
|
package='letsencrypt_example_plugins.py',
|
|
install_requires=[
|
|
'letsencrypt',
|
|
'zope.interface',
|
|
],
|
|
entry_points={
|
|
'letsencrypt.authenticators': [
|
|
'example = letsencrypt_example_plugins:Authenticator',
|
|
],
|
|
},
|
|
)
|