[tool.poetry] name = "certbot-pinner" version = "0.1.0" description = "A simple project for pinning Certbot's dependencies using Poetry." authors = ["Certbot Project"] license = "Apache License 2.0" [tool.poetry.dependencies] python = "^3.6" # Local dependencies # Any local packages that have dependencies on other local packages must be # listed below before the package it depends on. For instance, certbot depends # on acme so certbot must be listed before acme. certbot-ci = {path = "../../certbot-ci", extras = ["docs"]} certbot-compatibility-test = {path = "../../certbot-compatibility-test", extras = ["docs"]} certbot-dns-cloudflare = {path = "../../certbot-dns-cloudflare", extras = ["docs"]} certbot-dns-cloudxns = {path = "../../certbot-dns-cloudxns", extras = ["docs"]} certbot-dns-digitalocean = {path = "../../certbot-dns-digitalocean", extras = ["docs"]} certbot-dns-dnsimple = {path = "../../certbot-dns-dnsimple", extras = ["docs"]} certbot-dns-dnsmadeeasy = {path = "../../certbot-dns-dnsmadeeasy", extras = ["docs"]} certbot-dns-gehirn = {path = "../../certbot-dns-gehirn", extras = ["docs"]} certbot-dns-google = {path = "../../certbot-dns-google", extras = ["docs"]} certbot-dns-linode = {path = "../../certbot-dns-linode", extras = ["docs"]} certbot-dns-luadns = {path = "../../certbot-dns-luadns", extras = ["docs"]} certbot-dns-nsone = {path = "../../certbot-dns-nsone", extras = ["docs"]} certbot-dns-ovh = {path = "../../certbot-dns-ovh", extras = ["docs"]} certbot-dns-rfc2136 = {path = "../../certbot-dns-rfc2136", extras = ["docs"]} certbot-dns-route53 = {path = "../../certbot-dns-route53", extras = ["docs"]} certbot-dns-sakuracloud = {path = "../../certbot-dns-sakuracloud", extras = ["docs"]} certbot-nginx = {path = "../../certbot-nginx", extras = ["docs"]} certbot-apache = {path = "../../certbot-apache", extras = ["dev"]} certbot = {path = "../../certbot", extras = ["dev", "docs"]} acme = {path = "../../acme", extras = ["dev", "docs"]} windows-installer = {path = "../../windows-installer"} # Extra dependencies # Upgrading coverage, pylint, pytest, and some of pytest's plugins causes many # test failures so let's pin these packages back for now. coverage = "4.5.4" pylint = "2.4.3" pytest = "3.2.5" pytest-forked = "0.2" # We were originally pinning back python-augeas for certbot-auto because we # found the way older versions of the library linked to Augeas were more # reliable. That's no longer a concern, however, we continue to pin back the # library for now because it causes Certbot tests on Windows to fail. See # https://github.com/certbot/certbot/issues/8732. python-augeas = "0.5.0" [tool.poetry.dev-dependencies] [build-system] requires = ["poetry-core>=1.0.0"] build-backend = "poetry.core.masonry.api"