-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (53 loc) · 1.11 KB
/
pyproject.toml
File metadata and controls
61 lines (53 loc) · 1.11 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
[project]
name = "headhunter"
version = "0.1.0"
description = "A parser for extracting the headings from Markdown files"
authors = [
{name = "CMI DAIR", email = "dair@childmind.org"},
{name = "Alp Erkent", email = "alp.erkent@childmind.org"}
]
license = "LGPL-2.1-only"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"pandas>=2.3.3",
"rapidfuzz>=3.14.3",
"tqdm>=4.67.1"
]
[dependency-groups]
dev = [
"pytest>=8.3.4",
"mypy>=1.13.0",
"pre-commit>=4.0.1",
"pytest-cov>=6.0.0",
"ruff>=0.8.1",
"deptry>=0.23.0"
]
docs = ["pdoc>=15.0.0"]
notebooks = [
"jupyter>=1.1.1",
"ipykernel>=6.29.5",
"pyarrow>=22.0.0"
]
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["tests"]
[tool.mypy]
ignore_missing_imports = true
[tool.ruff]
line-length = 88
indent-width = 4
src = ["src"]
target-version = "py312"
[tool.ruff.lint]
select = ["ANN", "D", "E", "F", "I"]
ignore = []
fixable = ["ALL"]
unfixable = []
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.ruff.lint.per-file-ignores]
"tests/**/*.py" = []
[build-system]
requires = ["uv_build>=0.9.3,<0.11.0"]
build-backend = "uv_build"