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