-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
104 lines (96 loc) · 1.65 KB
/
pyproject.toml
File metadata and controls
104 lines (96 loc) · 1.65 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
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
[project]
name = "mindlogger-data-export"
version = "0.1.10"
description = "Add your description here"
readme = "README.md"
authors = [
{ name = "Gabriel Schubiner", email = "gabriel.schubiner@childmind.org" },
]
requires-python = ">=3.11"
dependencies = [
"lark>=1.2.2",
"packaging>=24.2",
"polars>=1.31.0",
"rich>=14.2.0",
"tyro>=0.9.5",
"xlsxwriter>=3.2.5",
]
[project.scripts]
mindlogger-data-export = "mindlogger_data_export:cli"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"jupyter>=1.1.1",
"marimo[lsp]>=0.13.15",
"mypy>=1.15.0",
"pandas>=2.3.1",
"pyarrow>=19.0.0",
"pytest>=8.3.4",
"pytest-datafiles>=3.0.0",
"ruff>=0.9.6",
]
[tool.mypy]
ignore_missing_imports = true
[tool.ruff.lint]
extend-select = [
"A",
"ARG",
"B",
"C4",
"C90",
"COM",
"D",
"ERA",
"FA",
"FBT",
"FLY",
"FURB",
"G",
"I",
"ICN",
"ISC",
"LOG",
"N",
"PIE",
"PL",
"PT",
"PTH",
"PYI",
"RET",
"RSE",
"S",
"T20",
"TRY",
"UP",
]
extend-ignore = [
"COM812",
"COM819",
"D107",
"D203",
"D206",
"D213",
"D300",
"ISC001",
"ISC002",
"TRY003",
"ERA001",
]
[tool.ruff.lint.extend-per-file-ignores]
"tests/**/*.py" = ["S101", "SLF001", "INP001", "D103", "ERA001"]
"scripts/*.py" = ["T20", "D100", "N803", "B018", "ERA001", "PLR0913", "FBT003"]
"scripts/*.ipynb" = [
"C901",
"D103",
"ERA001",
"FBT002",
"PLR2004",
"PLR0912",
"PLR0915",
"PTH118",
"T20",
]
[tool.ruff.lint.pydocstyle]
convention = "google"