sbs/pyproject.toml

24 lines
516 B
TOML
Raw Permalink Normal View History

2025-07-24 15:46:18 -04:00
[tool.poetry]
name = "sbs"
version = "0.0.1"
description = "Status Broadcast System creates a status report via Jira and Gemini"
authors = ["Steve Milner <smilner@redhat.com>"]
license = "GPLv3+"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.13"
requests = "^2.32.4"
2025-07-24 15:46:18 -04:00
[tool.poetry.group.dev.dependencies]
pytest = "^8.4.1"
pytest-cov = "^6.2.1"
2025-07-24 15:46:18 -04:00
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
addopts = "--cov=sbs --cov-fail-under=80"