-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathpyproject.toml
57 lines (50 loc) · 1.07 KB
/
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
49
50
51
52
53
54
55
56
57
[project]
name = "raycast_backend"
version = "0.2.0"
description = ""
authors = [
{name = "Yufei Kang", email = "[email protected]"},
]
dependencies = [
"fastapi>=0.95.1",
"openai>=1.3.6",
"google-genai>=1.0.0",
"httpx>=0.24.0",
"pyyaml>=6.0.2",
"jsonpath-ng>=1.6.1",
"anthropic>=0.29.0",
"click>=8.1.7",
"uvicorn[standard]>=0.30.1",
]
requires-python = ">=3.10"
readme = "README.md"
license = {text = "MIT"}
[project.scripts]
raycast-proxy = "raycast_proxy.cli:main [cli]"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["raycast_proxy"]
[tool.black]
line-length = 88
target-version = ['py39']
[tool.isort]
atomic = true
profile = "black"
line_length = 88
skip_gitignore = true
[project.optional-dependencies]
cli = [
"cryptography>=42.0.7",
"mitmproxy>=11.0.2",
]
dev = [
"black>=24.1.1",
"pytest>=8.0.0",
"pytest-asyncio>=0.23.5",
"pytest-cov>=4.1.0",
]
[tool.pytest.ini_options]
asyncio_mode = "strict"
asyncio_default_fixture_loop_scope = "function"