-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (74 loc) · 2.19 KB
/
Copy pathpyproject.toml
File metadata and controls
78 lines (74 loc) · 2.19 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
[project]
name = "lawglance"
version = "0.1.0"
description = "Your AI-Powered Legal Assistan"
authors = [{name = "https://lawglance.com/" }]
maintainers = [
{name = "Sreejith G", email = "gsreejith828@gmail.com"},
{name = "Midhun M I", email = "midhunmi2011@gmail.com"},
{name = "Meenu Dev", email = "mee.dev03@gmail.com"},
{name = "Brijesh", email = "brijesh@curvelogics.com"},
{name = "Haritha C", email = "harithac.contactmail@gmail.com"},
]
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"fastapi>=0.115.0",
"chroma-hnswlib==0.7.6",
"chromadb==0.5.11",
"google-genai>=1.33.0",
"httpx>=0.27.0",
"ipykernel>=6.30.1",
"jupyter>=1.1.1",
"langchain==0.2.9",
"langchain-chroma==0.1.4",
"langchain-community==0.2.10",
"langchain-core==0.2.24",
"langchain-openai>=0.1.19",
"langchain-text-splitters==0.2.2",
"langchainhub==0.1.20",
"langdetect==1.0.9",
"langsmith==0.1.93",
"openai>=1.66.3",
"pymupdf==1.24.9",
"pymupdfb==1.24.9",
"redis>=6.3.0",
"streamlit==1.37.0",
"uvicorn>=0.30.0",
"python-multipart>=0.0.9",
]
[dependency-groups]
dev = [
"mypy>=1.11.2",
"pytest>=8.3.5",
"ruff>=0.11.0",
]
[tool.pytest.ini_options]
pythonpath = ["src", "."]
[tool.ruff]
# Keep lint gates focused on runtime/source files; legacy notebooks are non-gating.
extend-exclude = ["*.ipynb"]
[tool.mypy]
python_version = "3.11"
warn_unused_configs = true
ignore_missing_imports = true
follow_imports = "skip"
files = [
"backend-vercel/api/index.py",
"scripts/validate_backend_vercel_source_sync.py",
"src/immcad_api/main.py",
"src/immcad_api/settings.py",
"src/immcad_api/schemas.py",
"src/immcad_api/api/routes/cases.py",
"src/immcad_api/policy/compliance.py",
"src/immcad_api/services/case_search_service.py",
"src/immcad_api/services/chat_service.py",
"src/immcad_api/sources/official_case_law_client.py",
"src/immcad_api/sources/source_registry.py",
"tests/test_api_scaffold.py",
"tests/test_case_search_service.py",
"tests/test_chat_service.py",
"tests/test_export_policy_gate.py",
"tests/test_official_case_law_client.py",
"tests/test_settings.py",
]