-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
81 lines (71 loc) · 1.82 KB
/
Copy pathpyproject.toml
File metadata and controls
81 lines (71 loc) · 1.82 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "govintel"
version = "0.1.0"
description = "Federal Procurement Intelligence Engine — RAG system analyzing federal contract data"
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
authors = [{ name = "Avishek Saha" }]
dependencies = [
"fastapi>=0.115.0",
"uvicorn[standard]>=0.32.0",
"httpx>=0.27.0",
"pydantic>=2.9.0",
"pydantic-settings>=2.6.0",
"sqlalchemy[asyncio]>=2.0.36",
"asyncpg>=0.30.0",
"chromadb>=0.5.0",
"pinecone-client>=5.0.0",
"sentence-transformers>=3.3.0",
"huggingface-hub>=0.27.0",
"rank-bm25>=0.2.2",
"google-genai>=1.0.0",
"langfuse>=4.0.0",
"pyyaml>=6.0.2",
"jinja2>=3.1.4",
"streamlit>=1.54.0",
]
[project.optional-dependencies]
dev = [
"aiosqlite>=0.20.0",
"pytest>=8.3.0",
"pytest-asyncio>=0.24.0",
"pytest-cov>=6.0.0",
"httpx",
"ruff>=0.8.0",
"mypy>=1.13.0",
]
eval = [
"ragas>=0.2.0",
]
train = [
"accelerate>=0.34.1,<2",
"bitsandbytes!=0.46.0,!=0.48.0,>=0.45.5,<1",
"datasets!=4.0.*,!=4.1.0,>=3.4.1,<4.4.0",
"peft!=0.11.0,>=0.18.0,<1",
"transformers!=4.52.0,!=4.52.1,!=4.52.2,!=4.52.3,!=4.53.0,!=4.54.0,!=4.55.0,!=4.55.1,!=4.57.0,!=4.57.4,!=4.57.5,!=5.0.0,!=5.1.0,>=4.51.3,<=5.5.0",
"trl!=0.19.0,>=0.18.2,<=0.24.0",
"unsloth>=2026.5.6,<2027",
]
[tool.hatch.build.targets.wheel]
packages = ["src/govintel"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
[tool.ruff]
target-version = "py310"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "UP"]
[tool.mypy]
python_version = "3.10"
strict = true
[[tool.mypy.overrides]]
module = "streamlit"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "streamlit.*"
ignore_missing_imports = true