-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
36 lines (30 loc) · 894 Bytes
/
pyproject.toml
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
#:schema https://json.schemastore.org/pyproject.json
# See: https://packaging.python.org/en/latest/guides/writing-pyproject-toml/
[project]
name = "scripts"
description = "Quick solutions to small problems"
requires-python = ">=3.13"
version = "0.1.0"
dependencies = [
"mypy>=1.13.0",
"playwright>=1.48.0",
"pydantic>=2.9.2",
"requests>=2.32.3",
"rich>=13.9.3",
"ruff>=0.7.1",
"sendgrid>=6.11.0",
"typer>=0.12.5",
]
[tool.ruff]
line-length = 120
[tool.ruff.format]
docstring-code-format = true
[tool.ruff.lint]
extend-select = [
"I", # enable isort rules in the CLI (see: https://github.com/astral-sh/ruff-vscode?tab=readme-ov-file#configuring-vs-code)
]
unfixable = [
"F401", # don't delete unused imports while fixing lint errors on save
]
[dependency-groups]
dev = ["types-requests>=2.32.0.20241016"]