-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
125 lines (113 loc) · 2.85 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
121
122
123
124
[tool.poetry]
name = "blockingpy"
version = "0.1.8"
description = "Blocking records for record linkage and data deduplication based on ANN algorithms."
authors = ["Tymoteusz Strojny <tymek.strojny@gmail.com>", "Maciej Beręsewicz <maciej.beresewicz@ue.poznan.pl>"]
readme = "README.md"
license = "MIT"
repository = "https://github.com/ncn-foreigners/BlockingPy"
documentation = "https://blockingpy.readthedocs.io/en/latest/"
keywords = ["record-linkage", "deduplication", "ANN", "blocking", "data-matching"]
packages = [{include = "blockingpy"}]
include = [
"blockingpy/datasets/data/*.csv.gz",
"blockingpy/py.typed"
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/ncn-foreigners/BlockingPy/issues"
"Funding" = "https://www.ncn.gov.pl"
[tool.poetry.dependencies]
python = "^3.10"
numpy = "^1.21"
annoy = "^1.17.3"
hnswlib = "^0.8.0"
scipy = ">=1.5.0"
pynndescent = "^0.5.13"
scikit-learn = "^1.5.2"
networkx = "^3.1"
nltk = "^3.9.1"
voyager = "^2.0.9"
faiss-cpu = "^1.9.0"
pandas = ">=2.2.0,<3.0.0"
mlpack = ">=4.4.0, <5.0.0"
[tool.poetry.group.dev.dependencies]
ipykernel = "^6.29.5"
pytest = "^8.3.3"
pytest-cov = "^6.0.0"
ruff = "^0.8.0"
black = "^24.10.0"
mypy = "^1.13.0"
sphinx = "^8.1.3"
sphinxcontrib-napoleon = "^0.7"
myst-parser = "^4.0.0"
sphinx-rtd-theme = "^3.0.2"
sphinx-autobuild = "^2024.10.3"
[tool.black]
line-length = 100
target-version = ['py310']
[tool.mypy]
python_version = "3.10"
disallow_untyped_defs = true
disallow_incomplete_defs = true
check_untyped_defs = true
disallow_untyped_decorators = true
no_implicit_optional = true
warn_redundant_casts = true
warn_unused_ignores = true
warn_return_any = true
warn_unreachable = true
strict_optional = true
ignore_missing_imports = true
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = [
"E",
"F",
"I",
"B",
"C90",
"D",
"UP",
"YTT",
"ANN",
"S",
"A",
"LOG",
"PYI",
"TC",
"PD",
"PL",
"NPY",
"DOC",
"RUF",
"PLR2004",
]
ignore = ["D211", "D212", "D205", "RUF012", "PLR0917", "PLR0913", "ANN401", "PLR0912", "C901", "PLR0915"]
[tool.ruff.per-file-ignores]
"tests/*" = [
"ANN001",
"ANN002",
"ANN003",
"ANN201",
"ANN202",
"S101",
"DOC201",
"D401"
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"