-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (49 loc) · 1.21 KB
/
pyproject.toml
File metadata and controls
61 lines (49 loc) · 1.21 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "kimon-gedcom-tools"
version = "1.1.1"
description = "CLI utility for GEDCOM file validation, analysis, and search"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.11"
dependencies = [
"ged4py~=0.4.4",
"fast-langdetect>=1.0.0,<2.0.0",
"rapidfuzz>=3.0.0",
"DoubleMetaphone>=1.1",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-cov>=4.0",
"ruff>=0.1.0",
"black>=23.0",
"mypy>=1.0",
"pip-audit>=2.0",
"jsonschema>=4.0",
]
graph = ["kimon-gedgraph>=1.0.0,<2.0.0"]
[project.scripts]
gedcom-tools = "gedcom_tools.cli:main"
[project.urls]
Homepage = "https://github.com/kimon1230/gedcom_tools"
[tool.setuptools.packages.find]
where = ["src"]
[tool.black]
line-length = 88
target-version = ["py311"]
[tool.ruff]
line-length = 88
target-version = "py311"
[tool.ruff.lint]
select = ["E", "W", "F", "I", "B", "UP"]
[tool.mypy]
python_version = "3.11"
strict = true
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-v --cov=gedcom_tools --cov-report=term-missing --cov-fail-under=95"
[tool.coverage.run]
source = ["src/gedcom_tools"]