-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (45 loc) · 1.1 KB
/
pyproject.toml
File metadata and controls
47 lines (45 loc) · 1.1 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "mortgage-copilot"
version = "0.1.1"
authors = [
{ name="54g0", email="sagar8296d@gmail.com" },
]
description = "Agentic Mortgage Co-Pilot: A reusable, production-ready Python package that plugs generative-AI agents into any mortgage-origination stack."
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"langchain",
"faiss-cpu",
"pydantic",
"python-multipart",
"openai",
"transformers",
"sentence-transformers",
"accelerate",
"langchain_groq",
"langchain_openai",
"langchain_huggingface",
"huggingface_hub",
"langchain-google-genai",
"langchain-community",
"easyocr",
"camelot-py",
"PyPDF2",
"pdfplumber",
"pandas",
"numpy",
"tabulate",
"langgraph",
]
[project.urls]
"Homepage" = "https://github.com/54g0/Mortgage-Copilot"
[tool.setuptools.packages.find]
where = ["src"]