-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (64 loc) · 1.4 KB
/
Copy pathpyproject.toml
File metadata and controls
73 lines (64 loc) · 1.4 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
63
64
65
66
67
68
69
70
71
72
73
[project]
name = "agent-knowledge-forge"
version = "0.1.0"
description = "Multi-agent knowledge pipeline for frontier AI-agent engineering."
readme = "README.md"
requires-python = ">=3.11"
authors = [
{ name = "Agent Knowledge Forge contributors" }
]
dependencies = [
"beautifulsoup4>=4.12.3",
"chromadb>=0.5.23",
"crawl4ai>=0.4.247",
"httpx>=0.27.2",
"langchain-openai>=0.2.14",
"langgraph>=0.2.60",
"markdownify>=0.13.1",
"mcp>=1.2.0",
"pydantic>=2.10.4",
"pydantic-settings>=2.7.0",
"rich>=13.9.4",
"tenacity>=9.0.0",
"tiktoken>=0.8.0",
"typer>=0.15.1",
]
[project.optional-dependencies]
dev = [
"pytest>=8.3.4",
"pytest-asyncio>=0.25.0",
"ruff>=0.8.4",
]
local-embeddings = [
"sentence-transformers>=3.3.1",
]
[project.scripts]
akf = "agent_knowledge_harvester.cli:app"
harvester = "agent_knowledge_harvester.cli:app"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
package = true
[tool.hatch.build.targets.wheel]
packages = ["src/agent_knowledge_harvester"]
[tool.hatch.build.targets.sdist]
include = [
"src/agent_knowledge_harvester",
"tests",
"scripts",
"README.md",
"LICENSE",
".env.example",
"requirements.txt",
"Makefile",
"pyproject.toml",
]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM"]
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["tests"]