-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (54 loc) · 1.41 KB
/
pyproject.toml
File metadata and controls
58 lines (54 loc) · 1.41 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
[project]
name = "thelab"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"aiosqlite==0.19.0",
"alembic==1.12.1",
"bcrypt==4.0.1",
"celery==5.3.6",
"click>=8.2.1",
"fastapi==0.104.1",
"flower==2.0.1",
"google-generativeai~=0.8.3",
"llama-index-core==0.12.22",
"llama-index-embeddings-siliconflow>=0.2.1",
"llama-index-llms-openai-like>=0.3.4",
"llama-index-llms-siliconflow>=0.3.0",
"llama-index-postprocessor-siliconflow-rerank>=0.2.0",
"llama-index-storage-docstore-postgres>=0.3.1",
"llama-index-vector-stores-postgres>=0.5.5",
"openai==1.65.2",
"passlib[bcrypt]==1.7.4",
"pdf2image~=1.17.0",
"pillow~=11.0.0",
"psycopg2-binary==2.9.9",
"pydantic[email]==2.8.0",
"pydantic-settings==2.1.0",
"pypdfium2==4.30.1",
"python-dotenv==1.0.1",
"python-jose[cryptography]==3.4.0",
"python-logging-loki==0.3.1",
"python-multipart==0.0.19",
"redis==5.0.1",
"sqlalchemy==2.0.23",
"uvicorn==0.24.0",
]
[tool.black]
line-length = 120
target-version = ['py311']
include = '\.pyi?$'
skip-string-normalization = true
[tool.isort]
profile = "black"
line_length = 120
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
[tool.flake8]
max-line-length = 120
extend-ignore = ["E203"]