[project]
name = "ds-email-draft-poc"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
    "mypy>=1.16.0",
    "ruff>=0.11.13",
    "snowflake-ml-python>=1.8.5",
    "snowflake-snowpark-python==1.33.0",
    "streamlit>=1.45.1",
]

[tool.ruff]
line-length = 100
target-version = "py311"
include = [
    "*.py",
]

[tool.ruff.lint.isort]
combine-as-imports = true
forced-separate = []

[tool.ruff.lint.pydocstyle]
convention = "google"

[tool.mypy]
python_version = "3.11"
strict = true
pretty = true
color_output = true
show_error_codes = true
plugins = ["pydantic.mypy"]
files = [
    "*.py",
]

ignore_missing_imports = true
