-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (50 loc) · 1.35 KB
/
Copy pathpyproject.toml
File metadata and controls
56 lines (50 loc) · 1.35 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
[project]
name = "cognitive-cache"
version = "0.4.0"
description = "Task-aware context selection for LLMs"
readme = "README.md"
license = "Apache-2.0"
license-files = ["LICENSE"]
authors = [{ name = "Anish Shrestha" }]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries :: Python Modules",
"Intended Audience :: Developers",
]
requires-python = ">=3.11"
dependencies = [
"tiktoken>=0.7.0",
"scikit-learn>=1.4.0",
"networkx>=3.2",
"numpy>=1.26.0",
]
[project.optional-dependencies]
mcp = [
"mcp>=1.0.0",
]
benchmark = [
"anthropic>=0.40.0",
"openai>=1.50.0",
]
[project.urls]
Homepage = "https://github.com/Anyesh/cognitive-cache"
Repository = "https://github.com/Anyesh/cognitive-cache"
Issues = "https://github.com/Anyesh/cognitive-cache/issues"
[dependency-groups]
dev = [
"jedi>=0.20.0",
"pytest>=8.0.0",
"pytest-cov>=4.1.0",
]
[project.scripts]
cognitive-cache = "cognitive_cache.cli:main"
cognitive-cache-mcp = "cognitive_cache.mcp_server:main"
[build-system]
requires = ["uv_build>=0.9.17,<0.10.0"]
build-backend = "uv_build"
[tool.pytest.ini_options]
testpaths = ["tests"]