Files
weekly-activity/pyproject.toml
T
2026-08-21 14:55:45 +02:00

33 lines
755 B
TOML

[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"