-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (71 loc) · 2.1 KB
/
Copy pathpyproject.toml
File metadata and controls
78 lines (71 loc) · 2.1 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
74
75
76
77
78
[project]
name = "king-context"
version = "0.4.0"
description = "Local-first, token-efficient retrieval layer for AI agents"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.10"
authors = [
{ name = "deandevz", email = "bruucetscontact@gmail.com" },
]
keywords = [
"cli",
"llm",
"documentation",
"search",
"context",
"claude",
"ai-agents",
"rag",
"mcp",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"fastmcp>=0.4.0",
"sentence-transformers>=2.2.0",
"numpy>=1.24.0",
"python-dotenv>=1.0.0",
"httpx>=0.27.0",
"exa-py>=1.0.0",
"markdown>=3.5",
]
[project.optional-dependencies]
dev = [
"pytest>=9.0",
"pytest-asyncio>=0.25.0",
"respx>=0.22.0",
]
firecrawl = ["firecrawl-py>=1.0.0"]
crawl4ai = ["crawl4ai>=0.8.5,<0.9"]
all = ["king-context[firecrawl,crawl4ai]"]
[project.scripts]
king-context-server = "king_context.server:main"
king-scrape = "king_context.scraper.cli:main"
king-research = "king_context.research.cli:main"
kctx = "context_cli.cli:main"
[project.entry-points."king_context.scraper_providers"]
firecrawl = "scraper_providers.firecrawl_provider:register"
crawl4ai = "scraper_providers.crawl4ai_provider:register"
[project.urls]
Homepage = "https://github.com/deandevz/king-context"
Repository = "https://github.com/deandevz/king-context"
Issues = "https://github.com/deandevz/king-context/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/king_context", "src/context_cli", "src/llm_providers", "src/scraper_providers"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"