ab71bd8dae
Task/unit tests investment and client * move io_utils.py * add __init__.py * refactor: move string_funcs and update import paths to use utils namespace * rename string_funcs to string_utils * move and rename table_utils.py * refactor: rename claude_funcs to llm_utils in multiple files * update unit tests * added unit tests for src/string_utils.py * added unit tests for src/table_utils.py * added unit tests for src/llm_utils.py * added unit tests for src/io_utils.py * Merge branch 'main' into task/unit-tests-investment-and-client; TODO: fix unit tests * Unit tests to fix * fix unit tests * fix invalid references Approved-by: Alex Galarce
47 lines
942 B
TOML
47 lines
942 B
TOML
[tool.poetry]
|
|
name = "doczy-smart-chunking"
|
|
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"
|
|
python-dotenv = "^1.0.1"
|
|
psutil = "^6.1.0"
|
|
rapidfuzz = "^3.10.1"
|
|
pyxlsb = "^1.0.10"
|
|
openpyxl = "^3.1.5"
|
|
pytest-mock = "^3.14.0"
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
black = "^24.10.0"
|
|
mypy = "^1.12.0"
|
|
jupyter = "^1.1.1"
|
|
isort = "^5.13.2"
|
|
|
|
[tool.poetry.group.test.dependencies]
|
|
pytest = "^8.3.3"
|
|
|
|
[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"]
|
|
exclude = ["scripts/"]
|
|
|
|
[tool.pytest.ini_options]
|
|
pythonpath=["."]
|
|
testpaths = [
|
|
"tests"
|
|
]
|