2024-09-30 21:05:27 +00:00
|
|
|
[tool.poetry]
|
|
|
|
name = "nixprstatus"
|
2024-10-07 14:02:45 +00:00
|
|
|
version = "0.1.2"
|
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"
|
|
|
|
requests = "^2.32.3"
|
|
|
|
typer = "^0.12.5"
|
2024-10-05 23:53:34 +00:00
|
|
|
pydantic = "^2.9.2"
|
2024-09-30 21:05:27 +00:00
|
|
|
|
|
|
|
|
|
|
|
[tool.poetry.scripts]
|
|
|
|
nixprstatus = "nixprstatus.__main__:main"
|
|
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
|
|
ipython = "^8.27.0"
|
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|