-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (44 loc) · 1.16 KB
/
Copy pathpyproject.toml
File metadata and controls
47 lines (44 loc) · 1.16 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
[project]
name = "lexbridge"
version = "0.1.0"
description = "LexBridge: Cross-Lingual M&A Due Diligence Intelligence - Fully Local Multi-Agent System powered by Microsoft Harrier embeddings"
requires-python = ">=3.12,<3.13"
license = "MIT"
readme = "README.md"
dependencies = [
"numpy<2",
"torch>=2.2",
"transformers>=4.51",
"sentence-transformers>=3.4",
"tokenizers>=0.21",
"qdrant-client>=1.12",
"falkordblite>=0.9",
"langgraph>=0.3",
"langchain>=0.3",
"langchain-community>=0.3",
"langchain-openai>=0.3",
"streamlit>=1.40",
"pyvis>=0.3",
"plotly>=5.0",
"langdetect>=1.0",
"pydantic>=2.0",
"python-dotenv>=1.0",
"huggingface-hub>=0.25",
"streamlit-agraph>=0.0.45",
"requests>=2.31",
"beautifulsoup4>=4.12",
"lxml>=5.0",
"pypdf>=4.0",
"cryptography>=46.0.7",
]
[tool.uv]
python-preference = "system"
required-environments = [
"sys_platform == 'darwin' and platform_machine == 'arm64'",
"sys_platform == 'linux' and platform_machine == 'x86_64'",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src"]