-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (41 loc) · 974 Bytes
/
pyproject.toml
File metadata and controls
48 lines (41 loc) · 974 Bytes
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
[project]
name = "quarterly"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"aiofiles>=25.1.0",
"chromadb>=1.5.5",
"fastapi>=0.135.1",
"httpx>=0.28.1",
"llama-index-core>=0.14.16",
"llama-index-embeddings-ollama>=0.8.6",
"llama-index-llms-ollama>=0.9.1",
"llama-index-vector-stores-chroma>=0.5.5",
"prompt-toolkit>=3.0.52",
"python-dotenv>=1.2.2",
"questionary>=2.1.1",
"uvicorn>=0.41.0",
"nest_asyncio>=1.6.0"
]
[project.scripts]
api = "quarterly.api:run"
cli = "quarterly.cli:run"
[dependency-groups]
dev = [
"pytest>=9.0.2",
"pytest-cov>=7.0.0",
"ruff>=0.15.5",
]
[build-system]
requires = ["uv_build>=0.10.9,<0.11.0"]
build-backend = "uv_build"
[tool.ruff]
line-length = 110
target-version = "py313"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM"]
ignore = []
[tool.pytest.ini_options]
testpaths = ["tests"]