blob: 593c1dc789d69865387dcaf79ae719a92f34686c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
[project]
name = "nixpkgs-pr-watch"
version = "0.1.0"
requires-python = ">=3.13"
dependencies = [
"pygithub>=2.8.1",
"requests>=2.32.5",
"toml>=0.10.2",
"xdg-base-dirs>=6.0.2",
]
[project.scripts]
nixpkgs-pr-watch = "nixpkgs_pr_watch.__main__:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
|