feat: vibed out some slop over here

This commit is contained in:
h
2026-05-19 11:18:37 +02:00
commit 52e7528b86
60 changed files with 9176 additions and 0 deletions
+46
View File
@@ -0,0 +1,46 @@
[project]
name = "raycast-api"
version = "0.1.0"
description = "Python client for the Raycast backend API."
requires-python = ">=3.11"
readme = "README.md"
authors = [
{ name = "h", email = "h@kotikot.com" }
]
dependencies = [
"aiohttp>=3.13",
]
[project.optional-dependencies]
discovery = [
"esprima>=4.0",
]
[project.scripts]
raycast-api = "raycast_api.cli:main"
[build-system]
requires = ["uv_build>=0.11,<0.12"]
build-backend = "uv_build"
[tool.uv.build-backend]
module-name = ["raycast_api"]
[dependency-groups]
dev = [
"pytest>=8",
"pytest-asyncio>=0.23",
"aioresponses>=0.7",
"pre-commit>=4.0",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
markers = [
"live: hits real backend.raycast.com — needs RAYCAST_BEARER and RAYCAST_DEVICE_ID env vars",
"local_app: requires a local Raycast install at RAYCAST_APP_PATH or the default location",
]
filterwarnings = [
"ignore:Possible nested set at position .*:FutureWarning:esprima.scanner",
]