-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (44 loc) · 1.14 KB
/
Copy pathpyproject.toml
File metadata and controls
51 lines (44 loc) · 1.14 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
[project]
name = "knowledgebase"
version = "0.1.0"
description = "Personal LLM Wiki + lint tooling"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"alembic>=1.13",
"black>=26.3.1",
"fastmcp>=3.2.4",
"google-api-python-client>=2.197.0",
"google-auth-httplib2>=0.4.0",
"google-auth-oauthlib>=1.4.0",
"psycopg[binary]>=3.2",
"pyyaml>=6.0",
"ruff>=0.15.12",
"sqlalchemy>=2.0",
]
[dependency-groups]
dev = [
"httpx>=0.27",
"pytest>=8.0",
"pytest-cov>=5.0",
]
[tool.black]
target-version = ["py311"]
[tool.ruff]
target-version = "py311"
[tool.pytest.ini_options]
testpaths = ["test"]
pythonpath = ["src"]
[tool.hatch.build.targets.wheel]
packages = ["src/kb"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project.scripts]
kb-lint = "kb.cli.lint:main"
kb-opencode-daily-report = "kb.cli.opencode_daily_report:main"
kb-hermes-daily-report = "kb.cli.hermes_daily_report:main"
kb-claude-code-daily-report = "kb.cli.claude_code_daily_report:main"
kb-submit-cron-run = "kb.cli.submit_cron_run:main"
kb-db-ttl-sweep = "kb.cli.db_ttl_sweep:main"
kb-mcp = "kb.mcp.server:main"