-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (61 loc) · 1.63 KB
/
pyproject.toml
File metadata and controls
73 lines (61 loc) · 1.63 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 = "vcache"
version = "0.1.0"
description = ""
authors = []
readme = "README.md"
requires-python = ">=3.10,<3.13"
dependencies = [
"numpy (>=1.26.4,<2.0.0)",
"langchain (>=0.3.23,<0.4.0)",
"langchain-community (>=0.3.21,<0.4.0)",
"langchain-openai (>=0.3.14,<0.4.0)",
"langchain-anthropic (>=0.3.12,<0.4.0)",
"langchain-huggingface (>=0.1.2,<0.2.0)",
"langchain-google-genai (>=2.1.3,<3.0.0)",
"openai (>=1.75.0,<2.0.0)",
"faiss-cpu (>=1.10.0,<2.0.0)",
"hnswlib (>=0.8.0,<0.9.0)",
"chromadb (>=1.0.5,<2.0.0)",
"sentence-transformers (>=4.1.0,<5.0.0)",
"accelerate (>=1.6.0,<2.0.0)",
"typing-extensions (>=4.13.2,<5.0.0)",
"statsmodels (>=0.14.4,<0.15.0)",
"scipy (>=1.10.0,<1.16.0)",
"pytest (>=8.3.5,<9.0.0)",
"pandas (>=2.3.0,<3.0.0)",
"vllm (>=0.10.0,<0.11.0)",
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.group.benchmarks.dependencies]
matplotlib = "^3.7.0"
scikit-learn = "^1.2.0"
torch = "^2.6.0"
datasets = "^3.6.0"
[tool.poetry.group.dev.dependencies]
ruff = "^0.11.6"
mypy = "^1.15.0"
pre-commit = "^4.2.0"
pytest = "^8.0.0"
python-dotenv = "^1.1.0"
[tool.ruff]
target-version = "py311"
line-length = 88
select = ["E", "F", "I"]
ignore = ["E501"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
line-ending = "auto"
skip-magic-trailing-comma = false
[tool.mypy]
python_version = "3.10"
packages = ["vcache"]
namespace_packages = true
explicit_package_bases = true
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = "test_*.py"
python_functions = "test_*"