certbot/certbot-apache/setup.py

16 lines
346 B
Python
Raw Permalink Normal View History

from setuptools import setup
2026-05-11 11:56:58 -04:00
version = '5.6.0'
install_requires = [
# We specify the minimum certbot version as the current plugin
# version for simplicity. See
# https://github.com/certbot/certbot/issues/8761 for more info.
f'certbot[apache]>={version}',
]
setup(
version=version,
install_requires=install_requires,
)