Initial commit

This commit is contained in:
2026-08-21 14:55:45 +02:00
commit bc451f9830
6 changed files with 952 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
[project]
name = "launchpad-weekly-activity"
version = "0.1.0"
description = "Weekly Launchpad activity report (merge proposals, branches, bugs) for a user."
requires-python = ">=3.11"
dependencies = ["launchpadlib>=2.1.0", "keyring>=25"]
[project.scripts]
launchpad-weekly-activity = "launchpad_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/launchpad_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"