-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (42 loc) · 1.12 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#: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 = [
"expression>=5.3.0",
"google-auth>=2.36.0",
"gspread>=6.1.4",
"polars>=1.16.0",
"pydantic>=2.9.2",
"requests>=2.32.3",
"rich>=13.9.3",
"sendgrid>=6.11.0",
"typer>=0.12.5",
]
[dependency-groups]
dev = [
"mypy>=1.13.0",
"playwright>=1.48.0",
"pytest-watcher>=0.4.3",
"pytest>=8.3.4",
"ruff>=0.7.1",
"types-requests>=2.32.0.20241016",
]
[tool.mypy]
strict = true
[tool.pytest.ini_options]
addopts = "--quiet --showlocals -vv"
[tool.ruff]
line-length = 100
[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
]