-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (50 loc) · 1.02 KB
/
Copy pathpyproject.toml
File metadata and controls
53 lines (50 loc) · 1.02 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
[project]
name = "AutoC"
version = "0.1.0"
readme = "README.md"
requires-python = ">=3.11,<4.0"
dependencies = [
# dev
"python-dotenv>=1.1.0",
"black>=25.1.0",
# core
"diskcache>=5.6.3",
"pydantic>=2.11.4",
"langchain>=0.3.25",
"langchain-ibm>=0.3.10",
"langchain-openai>=0.3.16",
"langchain-ollama>=0.3.3",
"langgraph>=0.4.2",
"docling>=2.31.0",
"requests>=2.32.3",
"beautifulsoup4>=4.13.4",
# mitre ttps classifier
"transformers>=4.42.4",
"torch>=2.7.0",
"huggingface-hub>=0.31.1",
"joblib>=1.5.0",
"scikit-learn>=1.6.1",
# image processing
"pytesseract>=0.3.13",
# interfaces
"fastapi>=0.115.12",
"uvicorn>=0.34.2",
"click>=8.1.8",
"rich>=14.0.0",
"fastmcp>=2.2.10",
# monitoring
"langsmith>=0.3.42",
"pymilvus>=2.5.11",
"langchain-milvus>=0.2.1",
]
[tool.ruff]
line-length = 120
target-version = "py311"
[tool.uv.workspace]
members = [
"research",
]
[dependency-groups]
dev = [
"pylint>=4.0.4",
]