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
+23
View File
@@ -0,0 +1,23 @@
from setuptools import setup
from setuptools import find_packages
install_requires = [
'acme',
'letsencrypt',
'mock<1.1.0', # py26
'python-augeas',
'zope.component',
'zope.interface',
]
setup(
name='letsencrypt-apache',
packages=find_packages(),
install_requires=install_requires,
entry_points={
'letsencrypt.plugins': [
'apache = letsencrypt_apache.configurator:ApacheConfigurator',
],
},
)