nixprstatus/pyproject.toml
Torjus Håkestad bec4360df0
Some checks failed
test / test (pull_request) Failing after 40s
build / build (pull_request) Successful in 1m50s
Switch to uv from poetry
2024-12-03 03:15:59 +01:00

31 lines
514 B
TOML

[project]
name = "nixprstatus"
version = "0.1.15"
description = "Nixpkgs PR status checker"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"pydantic>=2.10.2",
"requests>=2.32.3",
"typer>=0.13.1",
]
[project.scripts]
nixprstatus = "nixprstatus.__main__:main"
[dependency-groups]
dev = [
{ include-group = "typing" },
{ include-group = "lint" },
]
typing = [
"mypy>=1.13.0",
"types-requests>=2.32.0.20241016",
]
lint = [
"ruff>=0.8.0",
]
[tool.uv]
package = true