mv letsencrypt_* letsencrypt-*.

This commit is contained in:
Jakub Warmuz
2015-07-11 04:31:18 +00:00
parent b7d3710579
commit 120a94f84f
91 changed files with 0 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
from setuptools import setup
from setuptools import find_packages
install_requires = [
'acme',
'letsencrypt',
'pyparsing>=1.5.5', # Python3 support; perhaps unnecessary?
'mock<1.1.0', # py26
'zope.interface',
]
setup(
name='letsencrypt-nginx',
packages=find_packages(),
install_requires=install_requires,
entry_points={
'letsencrypt.plugins': [
'nginx = letsencrypt_nginx.configurator:NginxConfigurator',
],
},
)