1
0
mirror of https://github.com/certbot/certbot.git synced 2026-01-23 07:20:55 +03:00
Files
certbot/letsencrypt-apache/setup.py
2015-08-22 11:01:28 +00:00

31 lines
601 B
Python

import sys
from setuptools import setup
from setuptools import find_packages
install_requires = [
'acme',
'letsencrypt',
'python-augeas',
'zope.component',
'zope.interface',
]
if sys.version_info < (2, 7):
install_requires.append('mock<1.1.0')
else:
install_requires.append('mock')
setup(
name='letsencrypt-apache',
packages=find_packages(),
install_requires=install_requires,
entry_points={
'letsencrypt.plugins': [
'apache = letsencrypt_apache.configurator:ApacheConfigurator',
],
},
include_package_data=True,
)