secretsanta/pyproject.toml
2023-12-09 11:29:28 +01:00

54 lines
No EOL
1.2 KiB
TOML

[project]
name = "secretsanta"
version = "0.1.0"
description = "Secret santa generator"
authors = [
{name = "185504a9", email = "catalin@roboces.dev"},
]
dependencies = [
"pydantic>=2.5.2",
"pydantic-settings>=2.1.0",
"aioboto3>=12.0.0",
]
requires-python = ">=3.11"
readme = "README.md"
license = {text = "GPL-3.0-or-later"}
[project.optional-dependencies]
litestar = [
"litestar[standard]>=2.4.2",
]
testing = [
"polyfactory>=2.12.0",
"pytest>=7.4.3",
"pytest-cov>=4.1.0",
"moto[s3]>=4.2.11",
]
linting = [
"ruff>=0.1.7",
"mypy>=1.7.1",
"types-aioboto3-lite[s3]>=12.0.0",
"boto3-stubs[s3]>=1.33.10",
]
chalice = [
"chalice>=1.29.0",
"anyio>=4.1.0",
]
sls = [
"anyio>=4.1.0",
]
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.ruff]
extend-select = ["W", "C90", "I", "N", "UP", "S", "BLE", "B", "A", "COM", "C4", "DTZ", "T10", "EM", "ISC", "T20", "PT", "RSE", "RET", "SIM", "PTH", "ERA", "PGH", "PL", "TRY", "RUF"]
extend-ignore = ["S101", "ISC001", "ISC002", "COM812"]
[tool.mypy]
python_version = "3.11"
warn_return_any = true
warn_unused_configs = true
[[tool.mypy.overrides]]
module = ["aioboto3"]