-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (66 loc) · 2.03 KB
/
pyproject.toml
File metadata and controls
74 lines (66 loc) · 2.03 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
[build-system]
requires = ["setuptools>=65.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pageindex-condb"
version = "1.0"
description = "KV-cache native context database with reasoning-based tree retrieval"
readme = "README.md"
requires-python = ">=3.9"
license = { file = "LICENSE" }
authors = [
{ name = "Vectify AI" },
]
keywords = ["llm", "retrieval", "rag", "context", "tree", "agent", "kv-cache"]
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Operating System :: OS Independent",
]
dependencies = [
"jinja2>=3.0.0",
"litellm>=1.82.0,<1.82.7",
"python-dotenv>=1.0.0",
"pyyaml>=6.0",
]
[project.optional-dependencies]
tokens = ["tiktoken>=0.7.0"]
dev = ["pytest>=7.0.0", "ruff>=0.4.0"]
release = ["build>=1.0.0", "twine>=4.0.0"]
[project.urls]
Homepage = "https://github.com/VectifyAI/ConDB"
Repository = "https://github.com/VectifyAI/ConDB"
Issues = "https://github.com/VectifyAI/ConDB/issues"
[tool.setuptools]
license-files = ["LICENSE"]
include-package-data = true
[tool.setuptools.packages.find]
include = ["contextdb*"]
exclude = ["tests*", "bench*", "data*", "examples*", "notes*", "scripts*"]
[tool.ruff]
line-length = 120
target-version = "py39"
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"B", # flake8-bugbear
"UP", # pyupgrade
]
ignore = [
"E501", # line too long (handled by formatter)
"B008", # do not perform function calls in argument defaults
]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false