X-Git-Url: https://git.sesse.net/?p=letsencrypt-varnish-plugin;a=blobdiff_plain;f=setup.py;h=deac39b559ac7e284335d9fef1ab7f79124f72bc;hp=afe53f32c2c62531a087aa5a0373d827ce1e16cf;hb=c9f60e8e3523049dd094b71d642a563015f1d2be;hpb=f282688a47568c825ddf3c68fa3b6c62b7c48d5a diff --git a/setup.py b/setup.py index afe53f3..deac39b 100644 --- a/setup.py +++ b/setup.py @@ -2,14 +2,14 @@ from setuptools import setup setup( - name='letsencrypt-varnish-plugin', + name='certbot-varnish', package='varnish.py', install_requires=[ - 'letsencrypt', + 'certbot>=0.26.0', 'zope.interface', ], entry_points={ - 'letsencrypt.plugins': [ + 'certbot.plugins': [ 'varnish = varnish:Authenticator', ], },