feat: initial commit
This commit is contained in:
commit
e8291f4bef
33 changed files with 10300 additions and 0 deletions
43
pyproject.toml
Normal file
43
pyproject.toml
Normal file
|
|
@ -0,0 +1,43 @@
|
|||
[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",
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue