-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (34 loc) · 797 Bytes
/
pyproject.toml
File metadata and controls
37 lines (34 loc) · 797 Bytes
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
[project]
name = "aaf"
version = "0.3.10"
description = "AAF (Agentic AI Framework)"
readme = "README.md"
homepage = "https://github.com/rivol/aaf"
license = {text = "MIT"}
authors = [{name = "Rivo Laks", email = "hi@rivolaks.com"}]
requires-python = ">=3.12"
dependencies = [
"anthropic~=0.37",
"docstring-parser~=0.16",
"duckduckgo-search~=6.2",
"fastapi[standard]~=0.111",
"litellm>=1.80.5",
"openai>=1.30,<3.0",
"prompt-toolkit~=3.0",
"pydantic~=2.7",
"rich~=13.7",
"sse-starlette~=2.1",
"typer~=0.12",
"typing-inspect~=0.9",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.black]
line-length = 120
target-version = ["py312"]
[tool.isort]
profile = "black"
line_length = 120
py_version = "312"
atomic = true