2024-10-28 23:39:36 +00:00
|
|
|
[tool.poetry]
|
2025-08-27 16:37:48 +00:00
|
|
|
name = "doczy-field-extraction"
|
2024-10-28 23:39:36 +00:00
|
|
|
version = "0.1.0"
|
|
|
|
|
description = ""
|
|
|
|
|
authors = ["Alex Galarce <agalarce@aarete.com>"]
|
|
|
|
|
readme = "README.md"
|
|
|
|
|
package-mode = false
|
|
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
|
|
|
python = "^3.12"
|
|
|
|
|
pandas = "^2.2.3"
|
|
|
|
|
boto3 = "^1.35.40"
|
|
|
|
|
anthropic = "^0.36.0"
|
2024-11-14 16:35:33 +00:00
|
|
|
python-dotenv = "^1.0.1"
|
2024-11-21 15:19:53 +00:00
|
|
|
psutil = "^6.1.0"
|
2024-12-03 17:18:11 +00:00
|
|
|
rapidfuzz = "^3.10.1"
|
2024-12-09 21:40:53 +00:00
|
|
|
pyxlsb = "^1.0.10"
|
2024-12-16 20:57:35 +00:00
|
|
|
openpyxl = "^3.1.5"
|
2025-01-27 21:27:15 +00:00
|
|
|
pytest-mock = "^3.14.0"
|
|
|
|
|
langchain = "^0.3.14"
|
|
|
|
|
langchainhub = "^0.1.21"
|
2025-01-27 19:39:23 +00:00
|
|
|
langchain-aws = "^0.2.11"
|
|
|
|
|
langchain-text-splitters = "^0.3.5"
|
|
|
|
|
langchain-community = "^0.3.15"
|
|
|
|
|
nltk = "^3.9.1"
|
|
|
|
|
rank-bm25 = "^0.2.2"
|
2025-02-20 04:10:33 +00:00
|
|
|
sentence-transformers = "^3.4.1"
|
|
|
|
|
faiss-cpu = "^1.10.0"
|
2025-04-08 20:14:49 +00:00
|
|
|
word2number = "^1.1"
|
|
|
|
|
orjson = "^3.10.16"
|
2025-05-07 18:21:09 +00:00
|
|
|
pymupdf = "^1.25.5"
|
|
|
|
|
pillow = "^11.2.1"
|
2025-10-22 16:46:28 +00:00
|
|
|
xlsxwriter = "^3.2.9"
|
2024-10-28 23:39:36 +00:00
|
|
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
|
|
|
black = "^24.10.0"
|
|
|
|
|
mypy = "^1.12.0"
|
2024-11-14 22:36:09 +00:00
|
|
|
jupyter = "^1.1.1"
|
2024-11-21 17:46:43 +00:00
|
|
|
isort = "^5.13.2"
|
2024-10-28 23:39:36 +00:00
|
|
|
|
|
|
|
|
[tool.poetry.group.test.dependencies]
|
|
|
|
|
pytest = "^8.3.3"
|
2025-01-17 17:15:32 +00:00
|
|
|
pytest-mock = "^3.14.0"
|
2025-01-24 22:46:59 +00:00
|
|
|
pytest-cov = "^6.0.0"
|
2024-10-28 23:39:36 +00:00
|
|
|
|
|
|
|
|
[build-system]
|
|
|
|
|
requires = ["poetry-core"]
|
|
|
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
|
|
|
|
|
|
[tool.black]
|
|
|
|
|
line-length = 88
|
|
|
|
|
target-version = ['py312']
|
|
|
|
|
|
|
|
|
|
[tool.mypy]
|
|
|
|
|
disable_error_code = ["import-untyped","assignment","name-defined","call-arg","var-annotated","attr-defined","arg-type"]
|
2025-01-06 15:39:29 +00:00
|
|
|
exclude = ["scripts/"]
|
2024-10-28 23:39:36 +00:00
|
|
|
|
|
|
|
|
[tool.pytest.ini_options]
|
2025-01-08 21:59:47 +00:00
|
|
|
pythonpath=["."]
|
2024-10-28 23:39:36 +00:00
|
|
|
testpaths = [
|
|
|
|
|
"tests"
|
2024-11-13 17:08:19 +00:00
|
|
|
]
|