2019-12-09 15:50:20 -05:00
|
|
|
from setuptools import find_packages
|
|
|
|
|
from setuptools import setup
|
2015-07-10 12:34:08 -04:00
|
|
|
|
2021-05-04 14:50:12 -04:00
|
|
|
version = '1.16.0.dev0'
|
2015-09-26 18:27:04 -04:00
|
|
|
|
2018-03-05 12:50:19 -05:00
|
|
|
# Remember to update local-oldest-requirements.txt when changing the minimum
|
|
|
|
|
# acme/certbot version.
|
2015-07-10 12:34:08 -04:00
|
|
|
install_requires = [
|
2021-04-22 04:00:33 -04:00
|
|
|
'acme>=1.8.0',
|
2020-12-03 00:32:06 -05:00
|
|
|
'certbot>=1.10.0',
|
2021-05-18 03:44:59 -04:00
|
|
|
'PyOpenSSL>=17.3.0',
|
|
|
|
|
'pyparsing>=2.2.0',
|
|
|
|
|
'setuptools>=39.0.1',
|
2015-07-10 12:34:08 -04:00
|
|
|
'zope.interface',
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
setup(
|
2016-04-13 19:45:54 -04:00
|
|
|
name='certbot-nginx',
|
2015-09-26 18:27:04 -04:00
|
|
|
version=version,
|
2016-04-13 19:49:30 -04:00
|
|
|
description="Nginx plugin for Certbot",
|
2015-09-26 18:49:46 -04:00
|
|
|
url='https://github.com/letsencrypt/letsencrypt',
|
2016-04-14 19:56:02 -04:00
|
|
|
author="Certbot Project",
|
2021-05-03 15:38:54 -04:00
|
|
|
author_email='certbot-dev@eff.org',
|
2015-09-26 18:37:50 -04:00
|
|
|
license='Apache License 2.0',
|
2021-01-25 18:07:43 -05:00
|
|
|
python_requires='>=3.6',
|
2015-09-26 19:00:25 -04:00
|
|
|
classifiers=[
|
2018-07-10 16:52:58 -04:00
|
|
|
'Development Status :: 5 - Production/Stable',
|
2015-09-26 19:00:25 -04:00
|
|
|
'Environment :: Plugins',
|
|
|
|
|
'Intended Audience :: System Administrators',
|
|
|
|
|
'License :: OSI Approved :: Apache Software License',
|
|
|
|
|
'Operating System :: POSIX :: Linux',
|
|
|
|
|
'Programming Language :: Python',
|
2017-04-28 19:06:45 -04:00
|
|
|
'Programming Language :: Python :: 3',
|
|
|
|
|
'Programming Language :: Python :: 3.6',
|
2018-07-09 12:17:03 -04:00
|
|
|
'Programming Language :: Python :: 3.7',
|
2019-09-24 14:38:38 -04:00
|
|
|
'Programming Language :: Python :: 3.8',
|
2020-11-19 15:48:36 -05:00
|
|
|
'Programming Language :: Python :: 3.9',
|
2015-09-26 19:00:25 -04:00
|
|
|
'Topic :: Internet :: WWW/HTTP',
|
|
|
|
|
'Topic :: Security',
|
|
|
|
|
'Topic :: System :: Installation/Setup',
|
|
|
|
|
'Topic :: System :: Networking',
|
|
|
|
|
'Topic :: System :: Systems Administration',
|
|
|
|
|
'Topic :: Utilities',
|
|
|
|
|
],
|
2015-09-26 18:49:46 -04:00
|
|
|
|
2015-07-10 12:34:08 -04:00
|
|
|
packages=find_packages(),
|
2015-09-27 04:10:39 -04:00
|
|
|
include_package_data=True,
|
2015-07-10 12:34:08 -04:00
|
|
|
install_requires=install_requires,
|
|
|
|
|
entry_points={
|
2016-04-13 19:45:54 -04:00
|
|
|
'certbot.plugins': [
|
2019-11-25 17:30:24 -05:00
|
|
|
'nginx = certbot_nginx._internal.configurator:NginxConfigurator',
|
2015-09-06 05:21:03 -04:00
|
|
|
],
|
2015-07-10 12:34:08 -04:00
|
|
|
},
|
|
|
|
|
)
|