python: add UV project for 'scripts'

mainly so i don't have to install pygithub every time i want to
`uv run scripts/merge-pr.py`
This commit is contained in:
Jussi Saurio
2025-04-23 10:32:38 +03:00
parent fd2b274556
commit 3bbd443286
3 changed files with 246 additions and 2 deletions

9
scripts/pyproject.toml Normal file
View File

@@ -0,0 +1,9 @@
[project]
name = "scripts"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"pygithub>=2.6.1",
]