mirror of
https://github.com/certbot/certbot.git
synced 2026-01-23 07:20:55 +03:00
26 lines
569 B
Python
26 lines
569 B
Python
from setuptools import setup
|
|
from setuptools import find_packages
|
|
|
|
|
|
install_requires = [
|
|
'acme',
|
|
'letsencrypt',
|
|
'mock<1.1.0', # py26
|
|
'PyOpenSSL',
|
|
'pyparsing>=1.5.5', # Python3 support; perhaps unnecessary?
|
|
'setuptools', # pkg_resources
|
|
'zope.interface',
|
|
]
|
|
|
|
setup(
|
|
name='letsencrypt-nginx',
|
|
packages=find_packages(),
|
|
install_requires=install_requires,
|
|
entry_points={
|
|
'letsencrypt.plugins': [
|
|
'nginx = letsencrypt_nginx.configurator:NginxConfigurator',
|
|
],
|
|
},
|
|
include_package_data=True,
|
|
)
|