ssm/pyproject.toml

32 lines
549 B
TOML

[tool.poetry]
name = "ssm"
version = "0.1.0"
description = ""
authors = ["Correl Roush <correlr@aweber.com>"]
readme = "README.md"
[tool.poetry.scripts]
ssm = 'ssm:app'
[tool.poetry.dependencies]
python = "^3.12"
typer = "^0.9.0"
boto3 = "^1.33.5"
rich = "^13.7.0"
shellingham = "^1.5.4"
[tool.poetry.group.dev.dependencies]
mypy = "^1.7.1"
black = "^23.11.0"
[[tool.mypy.overrides]]
module = [
"boto3.*",
"botocore.*",
]
ignore_missing_imports = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"