This repository was archived by the owner on Nov 19, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (50 loc) · 1.32 KB
/
pyproject.toml
File metadata and controls
56 lines (50 loc) · 1.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[project]
name = "rwth-mensa-buttler-alexa-skill"
version = "0.1.0"
description = "An Alexa-Hosted skill for the mensa of RWTH-Aachen"
authors = [
{name = "MarcTM01", email = "108792843+MarcTM01@users.noreply.github.com"},
]
dependencies = [
"boto3==1.28.78",
"ask-sdk-core==1.19.0",
"pydantic>=2.7.1",
"pydantic-settings>=2.2.1",
"holidays>=0.49",
"eval-type-backport>=0.2.0",
]
requires-python = "==3.8.*"
readme = "README.md"
license = {text = "MIT"}
[tool.pdm.scripts]
lint = "ruff check --fix ."
format = "ruff format ."
check-format = "ruff format --check ."
typecheck = "mypy ./src/"
test = "pytest tests/"
[tool.pdm.dev-dependencies]
lint = [
"ruff>=0.4.4",
]
typecheck = [
"mypy>=1.10.0",
"boto3-stubs[essential]>=1.34.107",
]
i18n = [
"babel>=2.15.0",
]
test = [
"pytest>=8.2.0",
]
[tool.ruff.lint]
preview = true
select = ["F", "E", "W", "I", "N", "D", "UP", "ASYNC", "BLE", "B", "A", "COM", "C4",
"DTZ", "DJ", "EM", "FA", "ISC", "LOG", "G", "PIE", "T20", "PT", "Q", "RSE", "RET", "SIM",
"TID", "TCH", "INT", "ARG", "PTH", "PD", "PL", "TRY", "FLY", "NPY", "PERF", "FURB", "RUF"]
ignore = ["ISC001", "COM812", "DTZ001", "PLR6301"]
[tool.ruff.lint.per-file-ignores]
"**/tests/**" = ["D", "PLR2004"]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.pdm]
distribution = false