-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (46 loc) · 1.19 KB
/
pyproject.toml
File metadata and controls
52 lines (46 loc) · 1.19 KB
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
[project]
name = "promplate-demo"
version = "1"
authors = [{ name = "Muspi Merol", email = "me@promplate.dev" }]
requires-python = ">=3.10,<3.15"
readme = "README.md"
license = { text = "MIT" }
dependencies = [
"fastapi~=0.136.0",
"uvicorn[standard]~=0.46.0",
"promplate[all]~=0.3.5.0",
"promplate-trace[langfuse,langsmith]==0.3.0.dev7",
"python-box~=7.4.1",
"pydantic-settings~=2.13.1",
"httpx[http2]~=0.28.0",
"promptools[stream,validation]~=0.1.3.3",
"fake-useragent~=2.2.0",
"html2text~=2025.4.15",
"beautifulsoup4~=4.14.0",
"rich~=14.3.3",
"zai-sdk~=0.2.1",
"anthropic~=0.65.0",
"dashscope~=1.25.0",
"logfire[fastapi,system-metrics]~=4.31.0",
]
[tool.pdm]
distribution = false
[dependency-groups]
dev = [
"isort~=8.0.1",
"black~=26.3.1",
"dotenv.pth~=1.0",
]
[tool.pdm.scripts]
fmt = { composite = ["isort ./{args}", "black ./{args}"] }
dev = "uvicorn src.entry:app --reload"
prod = "uvicorn src.entry:app --host 0.0.0.0 --port $PORT"
[tool.isort]
profile = "black"
[tool.black]
line-length = 130
[tool.pyright]
exclude = ["**/*.pyi"]
include = ["src"]
typeCheckingMode = "standard"
reportUnnecessaryTypeIgnoreComment = "error"