-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (50 loc) · 1.09 KB
/
pyproject.toml
File metadata and controls
59 lines (50 loc) · 1.09 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
[project]
name = "scout"
version = "0.1.0"
description = "An enterprise context agent that navigates your company's knowledge graph"
requires-python = ">=3.12,<4"
readme = "README.md"
license-files = ["LICENSE"]
authors = [{ name = "Agno", email = "[email protected]" }]
dependencies = [
"agno[os]",
"exa-py",
"mcp",
"openai",
"parallel-web",
"pgvector",
"psycopg[binary]",
"pyyaml",
]
[project.optional-dependencies]
dev = ["mypy", "ruff", "types-PyYAML"]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["scout*", "db*", "app*", "evals*"]
[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.*",
"agno.*",
"httpx.*",
"parallel.*",
"exa_py.*",
"yaml.*",
"sqlalchemy.*",
"fastapi.*",
]
ignore_missing_imports = true
[tool.uv.pip]
no-annotate = true