certbot/certbot-apache/setup.py

18 lines
397 B
Python
Raw Normal View History

from setuptools import setup
2025-10-07 12:42:29 -04:00
version = '5.2.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,
)