-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
44 lines (39 loc) · 1.02 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
[build-system]
requires = ["pdm-backend == 2.1.*"]
build-backend = "pdm.backend"
[project]
name = "textmatch"
version = "1.0.1"
description = "Find fuzzy matches between datasets."
readme = "README.md"
requires-python = "== 3.11.*"
license-expression = "Apache-2.0"
urls.repository = "https://github.com/maxharlow/textmatch"
authors = [
{name = "Max Harlow", email = "contact@maxharlow.com"}
]
dependencies = [
"polars[pyarrow,pandas] == 0.20.*",
"polars-distance == 0.4.*",
"colorama == 0.4.*",
"unidecode == 1.3.*",
"doublemetaphone == 1.1.*",
"dedupe == 2.0.*"
]
[tool.pdm]
distribution = true
[tool.pdm.dev-dependencies]
test = [
"ruff",
"pyright",
"pytest",
"pytest-benchmark",
"faker"
]
[tool.pdm.scripts]
linter = "ruff check"
typechecker = "pyright"
tests = "pytest tests/functional.py --verbose"
speed-benchmarks = "pytest tests/benchmarks.py --verbose --benchmark-group-by=name --benchmark-min-rounds=100 --benchmark-autosave --benchmark-compare"
[tool.ruff.lint]
ignore = ["E701"]