add honcho as explicit dev dependency

This commit is contained in:
ducklet 2023-11-26 16:46:38 +01:00
parent 2c65436df5
commit 79068f2f10
2 changed files with 19 additions and 1 deletions

19
poetry.lock generated
View file

@ -270,6 +270,23 @@ files = [
{file = "h11-0.14.0.tar.gz", hash = "sha256:8f19fbbe99e72420ff35c00b27a34cb9937e902a8b810e2c88300c6f0a3b699d"}, {file = "h11-0.14.0.tar.gz", hash = "sha256:8f19fbbe99e72420ff35c00b27a34cb9937e902a8b810e2c88300c6f0a3b699d"},
] ]
[[package]]
name = "honcho"
version = "1.1.0"
description = "Honcho: a Python clone of Foreman. For managing Procfile-based applications."
optional = false
python-versions = "*"
files = [
{file = "honcho-1.1.0-py2.py3-none-any.whl", hash = "sha256:a4d6e3a88a7b51b66351ecfc6e9d79d8f4b87351db9ad7e923f5632cc498122f"},
{file = "honcho-1.1.0.tar.gz", hash = "sha256:c5eca0bded4bef6697a23aec0422fd4f6508ea3581979a3485fc4b89357eb2a9"},
]
[package.dependencies]
colorama = {version = "*", markers = "sys_platform == \"win32\""}
[package.extras]
export = ["jinja2 (>=2.7,<3)"]
[[package]] [[package]]
name = "html5lib" name = "html5lib"
version = "1.1" version = "1.1"
@ -690,4 +707,4 @@ files = [
[metadata] [metadata]
lock-version = "2.0" lock-version = "2.0"
python-versions = "^3.11" python-versions = "^3.11"
content-hash = "a3ac6ffc5086acd93ceea6edb9d72444407d7918f2674883087170762135be80" content-hash = "17bf1e1330a25f59ffec4ff3aa70d8e9d9e93553a81f72c0823d76125f6ccd08"

View file

@ -25,6 +25,7 @@ pyright = "*"
pytest-asyncio = "*" pytest-asyncio = "*"
pytest-cov = "*" pytest-cov = "*"
ruff = "*" ruff = "*"
honcho = "*"
[build-system] [build-system]
requires = ["poetry-core>=1.0.0"] requires = ["poetry-core>=1.0.0"]