certbot/certbot-apache/setup.py
2026-02-04 13:45:50 -08:00

15 lines
360 B
Python

from setuptools import setup
version = '5.4.0.dev0'
install_requires = [
# 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'certbot[apache]>={version}',
]
setup(
version=version,
install_requires=install_requires,
)