-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
120 lines (104 loc) · 2.47 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
[project]
name = "splinkclickhouse"
version = "0.4.0"
description = "Clickhouse backend support for Splink"
authors = [{name = "Andrew Bond"}]
license = {text = "MIT License"}
readme = "README.md"
keywords = [
"data linking",
"record linkage",
"entity resolution",
"deduplication",
"fuzzy matching",
]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Information Analysis",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
requires-python = ">=3.9"
dependencies = [
"splink >= 4.0.6",
"clickhouse_connect >= 0.7.0",
]
[project.urls]
Homepage = "https://github.com/ADBond/splinkclickhouse"
Documentation = "https://adbond.github.io/splinkclickhouse/"
Repository = "https://github.com/ADBond/splinkclickhouse.git"
Issues = "https://github.com/ADBond/splinkclickhouse/issues"
Changelog = "https://github.com/ADBond/splinkclickhouse/blob/main/CHANGELOG.md"
[project.optional-dependencies]
chdb = [
"chdb >= 2.0.1",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
package = true
default-groups = ["dev", "chdb"]
[dependency-groups]
dev = [
"pyarrow >= 17.0.0",
"ruff == 0.6.4",
"mypy == 1.11.2",
"pytest == 8.3.3",
"pytest-cov>=6.0.0",
]
chdb = [
"chdb>=2.0.1",
]
docs = [
"mkdocs>=1.6.1",
"mkdocs-material>=9.5.49",
"mkdocstrings-python>=1.13.0",
]
[tool.hatch.build.targets.sdist]
# opt-in to build
include = [
"splinkclickhouse/*",
"LICENSE",
"README.md",
"CHANGELOG.md",
"pyproject.toml"
]
[tool.ruff]
line-length = 88
lint.select = [
# Pyflakes
"F",
# Pycodestyle
"E",
"W",
# isort
"I001",
# bugbear
"B",
# flake8-print
"T20"
]
[tool.mypy]
packages = "splinkclickhouse"
implicit_optional = true
ignore_missing_imports = true
[tool.pytest.ini_options]
markers = [
# tests not marked with chdb or clickhouse:
"core",
# these run backend versions of tests, and core
"chdb",
"clickhouse",
# these do only the backend ones, no core
"chdb_no_core",
"clickhouse_no_core",
]