mirror of
https://github.com/certbot/certbot.git
synced 2026-02-19 02:28:06 -05: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',
|
||
|
|
],
|
||
|
|
},
|
||
|
|
)
|