-
Notifications
You must be signed in to change notification settings - Fork 96
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (51 loc) · 1.52 KB
/
pyproject.toml
File metadata and controls
57 lines (51 loc) · 1.52 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "openkb"
version = "0.1.3"
description = "OpenKB: Open LLM Knowledge Base, powered by PageIndex"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "Apache-2.0"}
authors = [
{name = "Kylin", email = "quanqi@pageindex.ai"},
{name = "Ray", email = "ray@vectify.ai"},
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software 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",
]
keywords = ["ai", "rag", "retrieval", "knowledge-base", "llm", "pageindex", "agents", "document"]
dependencies = [
"pageindex==0.3.0.dev1",
"markitdown[all]",
"click>=8.0",
"watchdog>=3.0",
"litellm",
"openai-agents",
"pyyaml",
"python-dotenv",
"json-repair",
"prompt_toolkit>=3.0",
"rich>=13.0",
]
[project.urls]
Repository = "https://github.com/VectifyAI/OpenKB"
Homepage = "https://github.com/VectifyAI/OpenKB"
Issues = "https://github.com/VectifyAI/OpenKB/issues"
[project.scripts]
openkb = "openkb.cli:cli"
[tool.pytest.ini_options]
testpaths = ["tests"]
[project.optional-dependencies]
dev = ["pytest", "pytest-asyncio"]
[tool.hatch.build.targets.wheel]
packages = ["openkb"]