815fa7f0bc
Draft: Adding Poetry * addpoetry * pipes * mypy * streamlit * searchforchange Approved-by: Alex Galarce
33 lines
645 B
TOML
33 lines
645 B
TOML
[tool.poetry]
|
|
name = "field-extraction"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = ["Michael McGuinness <mmcguinness@aarete.com>"]
|
|
readme = "README.md"
|
|
package-mode = false
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "3.12.7"
|
|
anthropic = "0.36.0"
|
|
boto3 = "1.35.37"
|
|
botocore = "1.35.37"
|
|
pandas = "2.2.3"
|
|
requests = "2.32.3"
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
black = "^24.10.0"
|
|
mypy = "^1.12.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 = ["import-untyped","assignment"]
|
|
install_types = true
|
|
non_interactive = true |