2015-07-10 12:34:08 -04:00
|
|
|
from setuptools import setup
|
|
|
|
|
from setuptools import find_packages
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
install_requires = [
|
|
|
|
|
'acme',
|
|
|
|
|
'letsencrypt',
|
2015-08-27 16:38:32 -04:00
|
|
|
'mock<1.1.0', # py26
|
2015-07-10 12:34:08 -04:00
|
|
|
'python-augeas',
|
2015-09-24 15:28:21 -04:00
|
|
|
'setuptools', # pkg_resources
|
2015-07-10 12:34:08 -04:00
|
|
|
'zope.component',
|
|
|
|
|
'zope.interface',
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
setup(
|
|
|
|
|
name='letsencrypt-apache',
|
|
|
|
|
packages=find_packages(),
|
|
|
|
|
install_requires=install_requires,
|
|
|
|
|
entry_points={
|
|
|
|
|
'letsencrypt.plugins': [
|
|
|
|
|
'apache = letsencrypt_apache.configurator:ApacheConfigurator',
|
2015-09-06 05:20:41 -04:00
|
|
|
],
|
2015-07-10 12:34:08 -04:00
|
|
|
},
|
2015-07-29 15:56:44 -04:00
|
|
|
include_package_data=True,
|
2015-07-10 12:34:08 -04:00
|
|
|
)
|