forked from vhaudiquet/weekly-activity
New `bts` subcommand backed by python-debianbts (bugs.debian.org SOAP): - Identify by email address: get_bugs(submitter=...) for bugs filed, get_bugs(owner=...) for bugs owned - Filed filtered on creation date, owned on log_modified; status lookups capped at 500 bugs per collect - Per-query failures degrade to warnings like other sources
38 lines
793 B
TOML
38 lines
793 B
TOML
[project]
|
|
name = "weekly-activity"
|
|
version = "0.2.0"
|
|
description = "Weekly activity report (merge proposals, pull requests, bugs, issues) for Launchpad and GitHub."
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"launchpadlib>=2.1.0",
|
|
"keyring>=25",
|
|
"httpx>=0.27",
|
|
"python-debianbts>=4.1.1",
|
|
]
|
|
|
|
[project.scripts]
|
|
weekly-activity = "weekly_activity.cli:main"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[dependency-groups]
|
|
dev = ["ruff>=0.6", "ty>=0.0.1"]
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/weekly_activity"]
|
|
|
|
[tool.ruff]
|
|
target-version = "py311"
|
|
line-length = 100
|
|
|
|
[tool.ruff.lint]
|
|
select = ["E", "F", "W", "I", "UP", "B", "SIM", "C4"]
|
|
|
|
[tool.ruff.format]
|
|
docstring-code-format = true
|
|
|
|
[tool.ty.environment]
|
|
python-version = "3.11"
|