5928ee0116
Feature/add dotenv * transferred sensitive information to .env file from src/config.py * replace model IDs, AWS account info * Merge remote-tracking branch 'origin/main' into feature/add-dotenv * add explanatory comment * Merge remote-tracking branch 'origin/main' into feature/add-dotenv * remove tests that were just for local Approved-by: Katon Minhas
40 lines
801 B
TOML
40 lines
801 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"
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
black = "^24.10.0"
|
|
openpyxl = "^3.1.5"
|
|
mypy = "^1.12.0"
|
|
|
|
[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"]
|
|
|
|
[tool.pytest.ini_options]
|
|
pythonpath=["src"]
|
|
testpaths = [
|
|
"tests"
|
|
]
|