mirror of
https://github.com/certbot/certbot.git
synced 2026-07-28 16:54:59 +02:00
mv letsencrypt_* letsencrypt-*.
This commit is contained in:
@@ -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',
|
||||
],
|
||||
},
|
||||
)
|
||||
Reference in New Issue
Block a user