2019-12-09 15:50:20 -05:00
|
|
|
from setuptools import setup
|
2015-07-10 12:34:08 -04:00
|
|
|
|
2025-12-03 14:48:10 -05:00
|
|
|
version = '5.3.0.dev0'
|
2015-09-26 18:27:04 -04:00
|
|
|
|
2015-07-10 12:34:08 -04:00
|
|
|
install_requires = [
|
2021-06-01 17:46:06 -04:00
|
|
|
# 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}',
|
2017-05-11 13:06:05 -04:00
|
|
|
'python-augeas',
|
2015-07-10 12:34:08 -04:00
|
|
|
]
|
2020-04-15 14:30:08 -04:00
|
|
|
|
2015-07-10 12:34:08 -04:00
|
|
|
setup(
|
2015-09-26 18:27:04 -04:00
|
|
|
version=version,
|
2015-07-10 12:34:08 -04:00
|
|
|
install_requires=install_requires,
|
|
|
|
|
)
|