-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (56 loc) · 1.55 KB
/
Copy pathpyproject.toml
File metadata and controls
64 lines (56 loc) · 1.55 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "kgmd"
dynamic = ["version"]
description = "A CLI that builds a knowledge graph from markdown files and exposes it via MCP"
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
keywords = ["knowledge-graph", "markdown", "mcp", "rag", "entity-extraction", "llm", "sqlite"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Database",
]
dependencies = [
"click>=8.1",
"litellm>=1.50",
"sqlite-vec>=0.1.6",
"fastembed>=0.4",
"networkx>=3.2",
"pydantic>=2.6",
"mcp>=1.0",
"pyyaml>=6.0",
"rich>=13.7",
"platformdirs>=4.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-mock>=3.10",
"ruff>=0.4",
]
[project.urls]
Homepage = "https://github.com/johncarpenter/kgmd"
Repository = "https://github.com/johncarpenter/kgmd"
Issues = "https://github.com/johncarpenter/kgmd/issues"
[project.scripts]
kgmd = "kgmd.cli:main"
[tool.hatch.version]
path = "kgmd/__init__.py"
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "I", "W"]