-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (53 loc) · 1.21 KB
/
pyproject.toml
File metadata and controls
62 lines (53 loc) · 1.21 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
53
54
55
56
57
58
59
60
61
62
[project]
name = "agno-demo"
version = "1.0.0"
requires-python = ">=3.12,<4"
readme = "README.md"
license = { file = "LICENSE" }
authors = [{ name = "Agno", email = "hello@agno.com" }]
dependencies = [
"agno[os]",
"anthropic",
"chromadb",
"duckdb",
"exa-py",
"fastapi[standard]",
"google-genai",
"mcp",
"nest_asyncio",
"openai",
"openinference-instrumentation-agno",
"opentelemetry-api",
"opentelemetry-sdk",
"pandas",
"parallel-web",
"pgvector",
"pillow",
"psycopg[binary]",
"pypdf",
"sqlalchemy",
"yfinance",
]
[project.optional-dependencies]
dev = ["mypy", "ruff"]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["agents*", "db*", "app*", "teams*", "workflows*", "registry*"]
[tool.ruff]
line-length = 120
exclude = [".venv*"]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401", "F403"]
[tool.mypy]
check_untyped_defs = true
no_implicit_optional = true
warn_unused_configs = true
plugins = ["pydantic.mypy"]
exclude = [".venv*"]
[[tool.mypy.overrides]]
module = ["pgvector.*", "setuptools.*", "agno.*", "httpx.*", "mcp.*", "pandas.*"]
ignore_missing_imports = true
[tool.uv.pip]
no-annotate = true