-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
83 lines (75 loc) · 1.7 KB
/
pyproject.toml
File metadata and controls
83 lines (75 loc) · 1.7 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
74
75
76
77
78
79
80
81
82
83
[project]
name = "aria"
version = "0.1.0"
description = "Aria - AI Assistant with web UI, CLI management, and local LLM support"
readme = "README.md"
authors = [
{ name = "Malvavisc0", email = "207609879+malvavisc0@users.noreply.github.com" },
]
requires-python = ">=3.12"
dependencies = [
"chainlit",
"chromadb",
"ddgs",
"markdownify",
"httpx",
"huggingface-hub",
"imdbinfo",
"langfuse",
"llama-index",
"llama-index-embeddings-openai-like",
"llama-index-instrumentation",
"llama-index-llms-openrouter",
"llama-index-vector-stores-chroma",
"loguru",
"markitdown",
"openinference-instrumentation-llama-index",
"playwright",
"pydantic",
"pillow",
"pypdfium2",
"python-dotenv",
"sqlalchemy",
"typer",
"yfinance",
"youtube-transcript-api",
]
[project.optional-dependencies]
gui = ["pyside6"]
[project.scripts]
aria = "aria:main"
aria-gui = "aria.gui:main"
[build-system]
requires = ["uv_build<0.12.0"]
build-backend = "uv_build"
[dependency-groups]
dev = [
"black",
"flake8",
"isort",
"ruff",
"pyinstaller",
"pytest",
"pytest-asyncio",
"pytest-cov",
]
[tool.isort]
profile = "black"
line_length = 88
[tool.pytest.ini_options]
asyncio_mode = "auto"
addopts = "--cov=src/aria --cov-report=term-missing --cov-report=html"
[tool.coverage.run]
source = ["src/aria"]
branch = true
command_line = "-m pytest"
[tool.coverage.report]
show_missing = true
skip_covered = false
skip_empty = true
exclude_lines = [
"pragma: no cover",
"if TYPE_CHECKING:",
"raise NotImplementedError",
"@(abc\\.)?abstractmethod",
] # GUI dependencies — required for aria-gui and standalone AppImage/.exe builds