X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;ds=sidebyside;f=setup.py;h=deac39b559ac7e284335d9fef1ab7f79124f72bc;hb=c9f60e8e3523049dd094b71d642a563015f1d2be;hp=afe53f32c2c62531a087aa5a0373d827ce1e16cf;hpb=93338ffe5c13a961ca432e991af1f693554418a6;p=letsencrypt-varnish-plugin 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', ], },