Initial commit

This commit is contained in:
2024-09-30 23:05:27 +02:00
commit cf0516fadc
7 changed files with 812 additions and 0 deletions

23
pyproject.toml Normal file
View File

@@ -0,0 +1,23 @@
[tool.poetry]
name = "nixprstatus"
version = "0.1.0"
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"
[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"