-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
89 lines (82 loc) · 1.41 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
[project]
name = "sql-case-studies"
version = "0.1.0"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"awswrangler>=3.10.0",
"boto3>=1.35.68",
"matplotlib>=3.9.2",
"pandas>=2.2.3",
"scikit-posthocs>=0.10.0",
"scipy>=1.14.1",
]
[tool.uv]
package = false
[dependency-groups]
notebook = [
"ipykernel>=6.29.5",
]
docs = [
"mkdocs>=1.6.1",
"mkdocs-material>=9.5.45",
"mkdocstrings[python]>=0.27.0",
]
lint-fmt = [
"mypy>=1.13.0",
"ruff>=0.8.0",
]
[tool.ruff]
exclude = [
".bzr",
".direnv",
".eggs",
".git",
".git-rewrite",
".hg",
".ipynb_checkpoints",
".mypy_cache",
".nox",
".pants.d",
".pyenv",
".pytest_cache",
".pytype",
".ruff_cache",
".svn",
".tox",
".venv",
".vscode",
"__pypackages__",
"_build",
"buck-out",
"build",
"dist",
"node_modules",
"site-packages",
"venv",
]
line-length = 88
indent-width = 4
target-version = "py312"
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"
[tool.mypy]
python_version = 3.12
warn_unused_ignores = true
warn_no_return = true
warn_unreachable = true
disallow_untyped_calls = true
[[tool.mypy.overrides]]
module = [
"boto3.*",
"botocore.*"
]
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = [
"pandas.*"
]
ignore_missing_imports = true