mirror of
https://github.com/certbot/certbot.git
synced 2026-07-27 00:00:44 +02:00
based on the suggestion @bmw made in #10484, this moves nearly everything from `certbot-apache` and `certbot-nginx` into subdirectories in `certbot/src/certbot/_internal`, and corresponding "extra" dependencies are made for the certbot distribution. in their place, entrypoint shims are made in the old distributions. this way, installing `certbot[nginx]` will pull in the extra dependencies needed for the nginx code, and also pull in the shim in `certbot-nginx`, letting our plugin discovery system work just as it did before. ditto for apache. note that this doesn't yet deprecate anything, which was one of the primary goals of the original issue -- i spun out that work into #10521 fixes #10484 --------- Co-authored-by: Brad Warren <bmw@users.noreply.github.com> Co-authored-by: ohemorange <erica@eff.org>
16 lines
351 B
Python
16 lines
351 B
Python
from setuptools import setup
|
|
|
|
version = '5.5.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[apache]>={version}',
|
|
]
|
|
|
|
setup(
|
|
version=version,
|
|
install_requires=install_requires,
|
|
)
|