]> git.sesse.net Git - letsencrypt-hitch-plugin/blob - setup.py
Update for certbot.
[letsencrypt-hitch-plugin] / setup.py
1 from setuptools import setup
2
3
4 setup(
5     name='certbot-hitch',
6     package='hitch.py',
7     install_requires=[
8         'certbot>=0.26.0',
9         'zope.interface',
10     ],
11     entry_points={
12         'certbot.plugins': [
13             'hitch = hitch:Installer',
14         ],
15     },
16 )