2024-09-30 21:05:27 +00:00
|
|
|
[tool.poetry]
|
|
|
|
name = "nixprstatus"
|
2024-10-09 22:59:43 +00:00
|
|
|
version = "0.1.5"
|
2024-09-30 21:05:27 +00:00
|
|
|
description = "Nixpkgs PR status checker"
|
|
|
|
authors = ["Torjus Håkestad <torjus@usit.uio.no>"]
|
|
|
|
license = "MIT"
|
|
|
|
readme = "README.md"
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
|
|
python = "^3.12"
|
2024-10-16 22:48:57 +00:00
|
|
|
requests = "^2"
|
|
|
|
typer = "^0.12"
|
|
|
|
pydantic = "^2"
|
2024-09-30 21:05:27 +00:00
|
|
|
|
|
|
|
|
|
|
|
[tool.poetry.scripts]
|
|
|
|
nixprstatus = "nixprstatus.__main__:main"
|
|
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
2024-10-16 22:48:57 +00:00
|
|
|
ipython = "*"
|
2024-09-30 21:05:27 +00:00
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|