-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (68 loc) · 1.69 KB
/
pyproject.toml
File metadata and controls
73 lines (68 loc) · 1.69 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 = "knowmarks"
version = "0.9.70"
description = "The knowledge store for the agentic era"
requires-python = ">=3.11"
license = "Apache-2.0"
keywords = ["knowledge-management", "bookmarks", "mcp", "ai-agents", "semantic-search"]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Internet :: WWW/HTTP :: Indexing/Search",
]
dependencies = [
"click>=8.1",
"httpx>=0.27",
"trafilatura>=2.0",
"numpy>=1.26",
"pydantic>=2.5",
"platformdirs>=4.0",
"rich>=13.0",
"pdfplumber>=0.11",
"youtube-transcript-api>=1.0",
"sentry-sdk[fastapi]>=2.0",
"posthog>=3.0",
"feedparser>=6.0",
]
[project.urls]
Homepage = "https://github.com/mcoliver/knowmarks"
Repository = "https://github.com/mcoliver/knowmarks"
Issues = "https://github.com/mcoliver/knowmarks/issues"
Documentation = "https://mcoliver.github.io/knowmarks/"
[project.optional-dependencies]
embeddings = [
"fastembed>=0.6",
]
web = [
"fastapi>=0.115",
"uvicorn[standard]>=0.34",
"jinja2>=3.1",
]
mcp = [
"mcp>=1.0",
]
documents = [
"kreuzberg>=4.7",
]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.24",
"ruff>=0.9",
"mkdocs-material>=9.5",
"pyinstaller>=6.0",
"browser-cookie3>=0.20.1",
]
all = [
"knowmarks[embeddings,web,mcp]",
]
[project.scripts]
km = "knowmarks.cli:cli"
km-mcp = "knowmarks.mcp.server:run_server"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/knowmarks"]