mirror of
https://github.com/certbot/certbot.git
synced 2026-02-03 20:40:36 -05:00
17 lines
397 B
Python
17 lines
397 B
Python
from setuptools import setup
|
|
|
|
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,
|
|
)
|