/
githubmirror
/
certbot
Обзор
Документация
Войти
/
githubmirror
/
certbot
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v5.2.2
certbot-nginx/setup.py
20 строк
557 B
Will Greenberg
Release 5.2.2
10 дек 2025, 20:08
Не верифицирован
10 дек 2025, 20:08
2e499f5
Код
Авторство
О чём код?
from setuptools import setup version = '5.2.2' 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}', # PyOpenSSL>=25.0.0 is just needed to satisfy mypy right now so this dependency can probably be # relaxed to >=24.0.0 if needed. 'PyOpenSSL>=25.0.0', 'pyparsing>=2.4.7', ] setup( version=version, install_requires=install_requires, )