-
Notifications
You must be signed in to change notification settings - Fork 50
/
pyproject.toml
48 lines (40 loc) · 904 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[project]
name = "raycast_backend"
version = "0.1.0"
description = ""
authors = [
{name = "Yufei Kang", email = "[email protected]"},
]
dependencies = [
"fastapi>=0.95.1",
"openai>=1.3.6",
"google-generativeai>=0.8.3",
"httpx>=0.24.0",
"uvicorn[standard]>=0.30.1",
"pyyaml>=6.0.1",
"jsonpath-ng>=1.6.1",
"anthropic>=0.29.0"
]
requires-python = ">=3.10"
readme = "README.md"
license = {text = "MIT"}
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.black]
line-length = 88
target-version = ['py39']
[tool.isort]
atomic = true
profile = "black"
line_length = 88
skip_gitignore = true
[tool.pdm.dev-dependencies]
dev = [
"black>=24.1.1",
"cryptography>=42.0.7",
"mitmproxy>=0.14.0",
]
[tool.pdm.scripts]
# generate cert by ./scripts/cert_gen.py
cert_gen = "scripts/cert_gen.py --domain backend.raycast.com --out ./cert"