-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
67 lines (63 loc) · 2.21 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
# pyproject.toml
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pyjedai"
version = "0.1.9"
description = "An open-source library that builds powerful end-to-end Entity Resolution workflows."
readme = "README.md"
authors = [
{ name = "Konstantinos Nikoletos", email = "[email protected]" },
{ name = "George Papadakis", email = "[email protected]" },
{ name = "Jakub Maciejewski", email = "[email protected]"},
{ name = "Manolis Koubarakis", email = "[email protected]"}
]
license = {text = "Apache Software License 2.0"}
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: Microsoft :: Windows",
"Operating System :: Unix",
"Operating System :: iOS",
"Topic :: Database",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules"
]
keywords = ["deduplication", "entity-resolution", "link-discovery"]
requires-python = ">=3.8"
dependencies = [
"gensim",
"matplotlib",
"networkx",
"nltk",
"numpy >= 1.7.0,<2.0",
"pandas",
"scipy==1.12",
"seaborn",
"tqdm",
"transformers",
"sentence-transformers",
"faiss-cpu",
"py-stringmatching",
"valentine; python_version > '3.7'",
"ordered-set",
"shapely"
]
[project.optional-dependencies]
dev = ["pip-tools", "pytest"]
[project.urls]
"Homepage" = "http://pyjedai.rtfd.io"
"Documentation" = "http://pyjedai.rtfd.io"
"Bug Tracker" = "https://github.com/AI-team-UoA/pyJedAI/issues"
"Source code" = "https://github.com/AI-team-UoA/pyJedAI/tree/main/pyjedai"