2019-12-09 15:50:20 -05:00
|
|
|
from setuptools import setup
|
2015-07-10 12:34:08 -04:00
|
|
|
|
2026-05-11 11:56:58 -04:00
|
|
|
version = '5.6.0'
|
2015-09-26 18:27:04 -04:00
|
|
|
|
2015-07-10 12:34:08 -04:00
|
|
|
install_requires = [
|
2026-03-23 21:09:04 -04:00
|
|
|
# We specify the minimum certbot version as the current plugin
|
2021-06-01 17:46:06 -04:00
|
|
|
# version for simplicity. See
|
|
|
|
|
# https://github.com/certbot/certbot/issues/8761 for more info.
|
2026-03-23 21:09:04 -04:00
|
|
|
f'certbot[apache]>={version}',
|
2015-07-10 12:34:08 -04:00
|
|
|
]
|
2020-04-15 14:30:08 -04:00
|
|
|
|
2015-07-10 12:34:08 -04:00
|
|
|
setup(
|
2015-09-26 18:27:04 -04:00
|
|
|
version=version,
|
2015-07-10 12:34:08 -04:00
|
|
|
install_requires=install_requires,
|
|
|
|
|
)
|