-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (52 loc) · 1.3 KB
/
Copy pathpyproject.toml
File metadata and controls
59 lines (52 loc) · 1.3 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
[project]
name = "bmecatexplorer"
version = "0.4.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"asyncpg>=0.31.0",
"alembic>=1.14.0",
"fastapi>=0.124.0",
"httpx>=0.28.1",
"jinja2>=3.1.0",
"lxml>=6.0.2",
"openai>=1.10.0",
"opensearch-py>=3.1.0",
"psycopg>=3.3.2",
"psycopg-binary>=3.3.2",
"pydantic-settings>=2.12.0",
"sqlalchemy[asyncio]>=2.0.44",
"uvicorn>=0.38.0",
]
[dependency-groups]
dev = [
"black>=25.12.0",
"httpx>=0.28.1",
"pytest>=9.0.2",
"pytest-asyncio>=1.3.0",
"ruff>=0.14.8",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
markers = [
"unit: Unit tests (no external dependencies)",
"integration: Integration tests (require PostgreSQL/OpenSearch)",
"smoke: Smoke tests (require running API server)",
]
[tool.black]
line-length = 88
target-version = ["py312"]
[tool.ruff]
line-length = 88
target-version = "py312"
extend-exclude = [".venv", ".tox", "build", "dist", "data"]
[tool.ruff.lint]
select = ["E", "F", "W", "I", "B", "UP"]
[tool.ruff.lint.per-file-ignores]
"src/api/routes/search.py" = ["B008"]
"frontend/app.py" = ["B008"]
[tool.ruff.lint.isort]
known-first-party = ["src", "frontend"]