X-Git-Url: https://git.sesse.net/?p=letsencrypt-hitch-plugin;a=blobdiff_plain;f=setup.py;h=3e81609b5f3774d5cc7afcbab943fbb4a7cef3ee;hp=bbe38591873feaaf7f38d3f7a042d8358ae7f03f;hb=HEAD;hpb=1a3f65859f881ee50b07749d7128384be7aaac62 diff --git a/setup.py b/setup.py index bbe3859..3e81609 100644 --- a/setup.py +++ b/setup.py @@ -2,14 +2,14 @@ from setuptools import setup setup( - name='letsencrypt-hitch-plugin', + name='certbot-hitch', package='hitch.py', install_requires=[ - 'letsencrypt', + 'certbot>=0.26.0', 'zope.interface', ], entry_points={ - 'letsencrypt.plugins': [ + 'certbot.plugins': [ 'hitch = hitch:Installer', ], },