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
|
|
|
|
2024-06-05 17:34:41 -04:00
|
|
|
version = '2.12.0.dev0'
|
2015-09-26 18:27:04 -04:00
|
|
|
|
2015-07-10 12:34:08 -04:00
|
|
|
install_requires = [
|
2021-06-01 17:46:06 -04:00
|
|
|
# We specify the minimum acme and certbot version as the current plugin
|
|
|
|
|
# version for simplicity. See
|
|
|
|
|
# https://github.com/certbot/certbot/issues/8761 for more info.
|
|
|
|
|
f'acme>={version}',
|
|
|
|
|
f'certbot>={version}',
|
2023-09-07 14:38:44 -04:00
|
|
|
'importlib_resources>=1.3.1; python_version < "3.9"',
|
2023-03-27 14:27:48 -04:00
|
|
|
# pyOpenSSL 23.1.0 is a bad release: https://github.com/pyca/pyopenssl/issues/1199
|
|
|
|
|
'PyOpenSSL>=17.5.0,!=23.1.0',
|
2022-02-28 18:23:30 -05:00
|
|
|
'pyparsing>=2.2.1',
|
|
|
|
|
'setuptools>=41.6.0',
|
2015-07-10 12:34:08 -04:00
|
|
|
]
|
|
|
|
|
|
2023-02-13 14:44:42 -05:00
|
|
|
test_extras = [
|
|
|
|
|
'pytest',
|
|
|
|
|
]
|
|
|
|
|
|
2015-07-10 12:34:08 -04:00
|
|
|
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",
|
2023-06-07 20:27:28 -04:00
|
|
|
url='https://github.com/certbot/certbot',
|
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',
|
2023-10-13 09:57:42 -04:00
|
|
|
python_requires='>=3.8',
|
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',
|
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',
|
2021-11-08 18:55:32 -05:00
|
|
|
'Programming Language :: Python :: 3.10',
|
2022-11-17 15:55:27 -05:00
|
|
|
'Programming Language :: Python :: 3.11',
|
2023-12-13 13:02:38 -05:00
|
|
|
'Programming Language :: Python :: 3.12',
|
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,
|
2023-02-13 14:44:42 -05:00
|
|
|
extras_require={
|
|
|
|
|
'test': test_extras,
|
|
|
|
|
},
|
2015-07-10 12:34:08 -04:00
|
|
|
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
|
|
|
},
|
|
|
|
|
)
|