mirror of
https://github.com/certbot/certbot.git
synced 2026-04-08 18:48:48 -04:00
25 lines
552 B
Python
25 lines
552 B
Python
import os
|
|
|
|
from setuptools import setup
|
|
|
|
version = '5.3.0.dev0'
|
|
|
|
install_requires = [
|
|
'dns-lexicon>=3.14.1',
|
|
]
|
|
|
|
if os.environ.get('SNAP_BUILD'):
|
|
install_requires.append('packaging')
|
|
else:
|
|
install_requires.extend([
|
|
# 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}',
|
|
])
|
|
|
|
setup(
|
|
version=version,
|
|
install_requires=install_requires,
|
|
)
|