-
Notifications
You must be signed in to change notification settings - Fork 551
/
pyproject.toml
82 lines (73 loc) · 2.24 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
[project]
name = "dedupe"
description = "A python library for accurate and scaleable data deduplication and entity-resolution"
version = "3.0.3"
readme = "README.md"
requires-python = ">=3.8"
license = {file = "LICENSE"}
keywords = []
authors = [
{ name = "Forest Gregg", email = "[email protected]" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Programming Language :: Cython",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Information Analysis",
]
dependencies = [
"scikit-learn",
"affinegap>=1.3",
"categorical-distance>=1.9",
"numpy>=1.20",
"doublemetaphone",
"highered>=0.2.0",
"simplecosine>=1.2",
"haversine>=0.4.1",
"BTrees>=4.1.4",
"zope.index",
"dedupe_Levenshtein_search",
]
[project.urls]
Homepage = "https://github.com/dedupeio/dedupe"
Issues = "https://github.com/dedupeio/dedupe/issues"
Documentation = "https://docs.dedupe.io/en/latest/"
Examples = "https://github.com/dedupeio/dedupe-examples"
Twitter = "https://twitter.com/DedupeIo"
Changelog = "https://github.com/dedupeio/dedupe/blob/main/CHANGELOG.md"
MailingList = "https://groups.google.com/forum/#!forum/open-source-deduplication"
[build-system]
requires = ["setuptools",
"wheel",
"cython"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["dedupe", "dedupe.variables"]
[tool.setuptools.package-data]
dedupe = ["py.typed"]
[tool.mypy]
plugins = "numpy.typing.mypy_plugin"
files = ["dedupe"]
show_error_codes = true
ignore_missing_imports = true
check_untyped_defs = true
implicit_reexport = false
[tool.pytest.ini_options]
minversion = "7.1"
addopts = "--cov dedupe --cov-report xml"
testpaths = ["tests", "dedupe"]
[tool.isort]
profile = "black"
src_paths = ["dedupe", "tests", "benchmarks"]
[tool.coverage.run]
omit = ["dedupe/backport.py"]
source = ["dedupe"]