certbot/certbot-apache/setup.py

18 lines
404 B
Python
Raw Permalink Normal View History

from setuptools import setup
2025-08-05 11:58:17 -04:00
version = '5.0.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'acme>={version}',
f'certbot>={version}',
2025-08-19 13:55:13 -04:00
'python-augeas>=0.5.0',
]
setup(
version=version,
install_requires=install_requires,
)