-
Notifications
You must be signed in to change notification settings - Fork 153
/
Copy pathpyproject.toml
57 lines (49 loc) · 1.39 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
[project]
name = "recordlinkage"
description = "A record linkage toolkit for linking and deduplication"
authors = [
{ name = "Jonathan de Bruin", email = "[email protected]" }
]
readme = "README.md"
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11"
]
license = {text = "BSD-3-Clause"}
dependencies = [
"jellyfish>=1",
"numpy>=1.13",
"pandas>=1,<3",
"scipy>=1",
"scikit-learn>=1",
"joblib"
]
dynamic = ["version"]
requires-python = ">=3.8"
[project.urls]
homepage = "https://recordlinkage.readthedocs.io/"
repository = "https://github.com/J535D165/recordlinkage"
[project.optional-dependencies]
all = ["networkx>=2", "bottleneck", "numexpr"]
lint = ["ruff"]
docs = ["sphinx", "nbsphinx", "sphinx-rtd-theme", "ipykernel"]
test = ["pytest"]
[build-system]
build-backend = 'setuptools.build_meta'
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"]
[tool.setuptools]
packages = ["recordlinkage"]
[tool.setuptools.package-data]
"*" = ["*.csv"]
[tool.setuptools_scm]
write_to = "recordlinkage/_version.py"
[tool.ruff]
select = ["E", "F", "UP", "I", "B"]
ignore = ["B006"]
exclude = ["docs/conf.py"]
[tool.ruff.isort]
force-single-line = true