2024-10-15 16:20:27 +00:00
|
|
|
[tool.poetry]
|
2024-11-27 15:08:04 +00:00
|
|
|
name = "doczy-smart-chunking"
|
2024-10-15 16:20:27 +00:00
|
|
|
version = "0.1.0"
|
|
|
|
|
description = ""
|
2024-11-27 15:08:04 +00:00
|
|
|
authors = ["Alex Galarce <agalarce@aarete.com>"]
|
2024-10-15 16:20:27 +00:00
|
|
|
readme = "README.md"
|
|
|
|
|
package-mode = false
|
|
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2024-11-27 15:08:04 +00:00
|
|
|
python = "^3.12"
|
|
|
|
|
pandas = "^2.2.3"
|
|
|
|
|
boto3 = "^1.35.40"
|
|
|
|
|
anthropic = "^0.36.0"
|
2025-05-07 18:21:09 +00:00
|
|
|
pymupdf = "^1.25.5"
|
|
|
|
|
pillow = "^11.2.1"
|
2025-11-10 19:29:45 +00:00
|
|
|
python-dotenv = "^1.0.0"
|
2024-10-15 16:20:27 +00:00
|
|
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
2024-11-27 15:08:04 +00:00
|
|
|
pytest = "^8.3.3"
|
2024-10-15 16:20:27 +00:00
|
|
|
black = "^24.10.0"
|
|
|
|
|
|
|
|
|
|
[build-system]
|
|
|
|
|
requires = ["poetry-core"]
|
|
|
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
|
|
|
|
|
|
[tool.black]
|
|
|
|
|
line-length = 88
|
|
|
|
|
target-version = ['py312']
|
|
|
|
|
|
|
|
|
|
[tool.mypy]
|
|
|
|
|
#disable_error_code = []
|
|
|
|
|
#install_types = true
|
2024-11-27 15:08:04 +00:00
|
|
|
#non_interactive = true
|