-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (39 loc) · 1.14 KB
/
Copy pathpyproject.toml
File metadata and controls
42 lines (39 loc) · 1.14 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
[project]
name = "freya-ai"
version = "0.3.0"
description = "A local, workspace-aware software engineering agent."
requires-python = ">=3.11"
dependencies = [
"ollama>=0.6,<1.0",
"python-dotenv>=1.0,<2.0",
"prompt_toolkit>=3.0,<4.0",
"psutil>=5.9,<6.0",
"sentence-transformers>=2.2,<3.0",
"numpy>=1.24,<2.0",
"faiss-cpu>=1.7.0,<2.0",
"httpx>=0.27,<1.0",
"aiohttp>=3.9,<4.0",
"playwright>=1.45,<2.0",
"python-docx>=1.1,<2.0",
"python-pptx>=0.6.23,<2.0",
"pypdf>=4.0,<7.0",
"beautifulsoup4>=4.12,<5.0",
"lxml>=4.9,<5.0",
"watchdog>=4.0,<7.0",
"openpyxl>=3.1,<4.0",
]
[project.optional-dependencies]
dev = ["pytest>=8.0,<9.0", "reportlab>=4.0,<5.0"]
[tool.setuptools.packages.find]
where = ["."]
include = ["app*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-q --cache-clear -p no:cacheprovider --disable-warnings"
markers = [
"core: deterministic core regression tests",
"llm: requires a local or external language model",
"integration: requires external services or long-running integration behavior",
"environment: depends on subprocess, hardware, or machine state",
"slow: deterministic but long-running tests",
]