certbot/certbot-nginx/setup.py

16 lines
350 B
Python
Raw Permalink Normal View History

from setuptools import setup
2026-04-07 12:38:18 -04:00
version = '5.6.0.dev0'
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[nginx]>={version}',
]
setup(
version=version,
install_requires=install_requires,
)