44 lines
781 B
TOML
44 lines
781 B
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",
|
|
]
|
|
linting = [
|
|
"ruff>=0.1.7",
|
|
]
|
|
chalice = [
|
|
"chalice>=1.29.0",
|
|
"anyio>=4.1.0",
|
|
]
|
|
sls = [
|
|
"anyio>=4.1.0",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["pdm-backend"]
|
|
build-backend = "pdm.backend"
|
|
|
|
[tool.pdm.dev-dependencies]
|
|
dev = [
|
|
"types-aioboto3-lite[s3]>=12.0.0",
|
|
]
|