certbot/certbot-apache/setup.py

18 lines
397 B
Python
Raw Permalink Normal View History

from setuptools import setup
2025-12-03 14:48:10 -05:00
version = '5.3.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}',
'python-augeas',
]
setup(
version=version,
install_requires=install_requires,
)