-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
63 lines (59 loc) · 1.66 KB
/
pyproject.toml
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
[project]
name = "billwatcher"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"minio>=7.2.8",
"starlette>=0.38.2",
"uvicorn>=0.30.6",
"gunicorn>=23.0.0",
"jinja2>=3.1.4",
"sqlalchemy>=2.0.32",
"httpx>=0.27.0",
"psycopg2>=2.9.9",
"faker>=28.0.0",
"anyio[trio]>=4.4.0",
"beautifulsoup4>=4.12.3",
"pymupdf>=1.24.9",
"pymupdf4llm>=0.0.12",
"ollama>=0.3.1",
"llama-index>=0.11.1",
"llama-index-embeddings-ollama>=0.3.0",
"llama-parse>=0.5.0",
"llama-index-llms-ollama>=0.3.0",
"chromadb>=0.5.5",
"llama-index-vector-stores-chroma>=0.2.0",
"streamlit>=1.37.1",
"llama-index-vector-stores-qdrant>=0.3.0",
"llama-index-readers-file>=0.2.0",
"llama-index-embeddings-fastembed>=0.2.0",
"llama-index-llms-openai>=0.2.0",
"qdrant-client>=1.11.1",
"fastembed>=0.3.6",
"llama-index-embeddings-huggingface>=0.3.1",
"llama-index-embeddings-instructor>=0.2.1",
"transformers>=4.44.2",
"optimum[exporters]>=1.17.1",
"sentence-transformers>=2.7.0",
"einops>=0.8.0",
"instructorembedding>=1.0.1",
"llama-index-embeddings-huggingface-optimum>=0.2.0",
"llama-index-finetuning>=0.2.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
dev-dependencies = ["ruff>=0.6.1", "mypy>=1.11.2"]
python-downloads = "automatic"
python-preference = "only-managed"
concurrent-builds = 4
concurrent-downloads = 4
concurrent-installs = 4
compile-bytecode = true
[tool.setuptools.package-data]
"billwatcher" = ["py.typed"]
[tool.setuptools.packages.find]
where = ["src"]