certbot/examples/plugins/setup.py

18 lines
405 B
Python
Raw Normal View History

2015-03-26 09:55:23 -04:00
from setuptools import setup
setup(
2016-04-14 13:20:23 -04:00
name='certbot-example-plugins',
package='certbot_example_plugins.py',
2015-03-26 09:55:23 -04:00
install_requires=[
2016-04-14 13:20:23 -04:00
'certbot',
2015-03-26 09:55:23 -04:00
'zope.interface',
],
entry_points={
2016-04-14 13:20:23 -04:00
'certbot.plugins': [
'example_authenticator = certbot_example_plugins:Authenticator',
'example_installer = certbot_example_plugins:Installer',
2015-03-26 09:55:23 -04:00
],
},
)