-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
44 lines (40 loc) · 953 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
[project]
name = "fastagent"
version = "0.1.0"
description = "An API."
readme = "README.md"
requires-python = ">=3.12"
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"argon2-cffi>=23.1.0",
"fastapi>=0.115.4",
"granian[reload]>=1.6.3",
"pydantic[email]>=2.9.2",
"pydantic-settings>=2.6.1",
"uvloop>=0.21.0",
"tomli-w>=1.1.0",
]
[project.optional-dependencies]
all = [
"asyncpg>=0.30.0",
"langserve[server]>=0.3.0",
"langgraph>=0.2.47",
"dspy-ai>=2.5.29",
"typer>=0.13.0",
"questionary>=2.0.1",
]
cli = ["typer>=0.13.0", "questionary>=2.0.1"]
postgres = ["asyncpg>=0.30.0"]
langchain = ["langserve[server]>=0.3.0"]
langgraph = ["langgraph>=0.2.47"]
dspy = ["dspy-ai>=2.5.29"]
[dependency-groups]
dev = ["pytest>=8.3.3"]
[project.scripts]
fastagent = "fastagent.cli:app"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"