-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (35 loc) · 846 Bytes
/
pyproject.toml
File metadata and controls
42 lines (35 loc) · 846 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
38
39
40
41
42
[project]
name = "llm-knowledge-base"
version = "0.9.10"
description = "LLM-maintained knowledge wiki — compile raw sources into structured, interlinked markdown."
requires-python = ">=3.12"
readme = "CLAUDE.md"
dependencies = [
"click>=8.0",
"python-frontmatter>=1.0",
"fastmcp>=2.0",
"networkx>=3.0",
"anthropic>=0.7",
"PyYAML>=6.0",
]
[project.scripts]
kb = "kb.cli:cli"
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"ruff>=0.4.0",
]
[tool.ruff]
line-length = 100
target-version = "py312"
[tool.ruff.lint]
select = ["E", "F", "I", "W", "UP"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
addopts = "-p no:faker -p no:langsmith_plugin"
[build-system]
requires = ["setuptools>=75.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]