-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (44 loc) · 1.08 KB
/
pyproject.toml
File metadata and controls
53 lines (44 loc) · 1.08 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
[project]
name = "scout"
version = "1.0.0"
description = "An enterprise knowledge agent with Claude Code-like capabilities"
requires-python = ">=3.12,<4"
readme = "README.md"
license-files = ["LICENSE"]
authors = [{ name = "Agno", email = "hello@agno.com" }]
dependencies = [
"agno",
"fastapi[standard]",
"httpx",
"mcp",
"openai",
"openinference-instrumentation-agno",
"opentelemetry-api",
"opentelemetry-sdk",
"pgvector",
"psycopg[binary]",
"sqlalchemy",
]
[project.optional-dependencies]
dev = ["mypy", "ruff"]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["scout*", "db*", "app*"]
[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.*"]
ignore_missing_imports = true
[tool.uv.pip]
no-annotate = true