certbot_plugin_gandi/setup.py
2018-03-15 15:19:54 +00:00

18 lines
348 B
Python

from setuptools import setup, find_packages
setup(
name='certbot-plugin-gandi',
packages=find_packages(),
install_requires=[
'certbot',
'zope.interface',
'requests>=2.4.2',
],
entry_points={
'certbot.plugins': [
'dns = certbot_plugin_gandi.main:Authenticator',
],
},
)