Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikoletos-K committed Jun 21, 2023
1 parent 15911fa commit 94f0dd3
Showing 1 changed file with 73 additions and 0 deletions.
73 changes: 73 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
# pyproject.toml

[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "pyjedai"
version = "0.0.6"
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]" },
]
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.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"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.7"
dependencies = [
"gensim >= 4.2.0",
"matplotlib >= 3.1.3",
"matplotlib-inline >= 0.1.3",
"networkx >= 2.3",
"nltk >= 3.7",
"numpy >= 1.21",
"pandas >= 0.25.3",
"pandas-profiling >= 3.2",
"pandocfilters >= 1.5",
"PyYAML >= 6.0",
"rdflib >= 6.1.1",
"rdfpandas >= 1.1.5",
"regex >= 2022.6.2",
"scipy >= 1.7",
"seaborn >= 0.11",
"strsim >= 0.0.3",
"strsimpy >= 0.2.1",
"tqdm >= 4.64",
"transformers >= 4.21",
"sentence-transformers >= 2.2",
"faiss-cpu >= 1.7",
"optuna >= 3.0",
'tomli; python_version < "3.11"',
"py-stringmatching >= 0.4"
]

[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"

0 comments on commit 94f0dd3

Please sign in to comment.