nixprstatus/pyproject.toml

31 lines
514 B
TOML
Raw Normal View History

2024-12-03 02:15:59 +00:00
[project]
2024-09-30 21:05:27 +00:00
name = "nixprstatus"
2024-12-03 02:15:59 +00:00
version = "0.1.15"
2024-09-30 21:05:27 +00:00
description = "Nixpkgs PR status checker"
readme = "README.md"
2024-12-03 02:15:59 +00:00
requires-python = ">=3.12"
dependencies = [
"pydantic>=2.10.2",
"requests>=2.32.3",
"typer>=0.13.1",
]
2024-09-30 21:05:27 +00:00
2024-12-03 02:15:59 +00:00
[project.scripts]
2024-09-30 21:05:27 +00:00
nixprstatus = "nixprstatus.__main__:main"
2024-12-03 02:15:59 +00:00
[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",
]
2024-09-30 21:05:27 +00:00
2024-12-03 02:15:59 +00:00
[tool.uv]
package = true