-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (39 loc) · 1006 Bytes
/
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
[tool.poetry]
name = "OntoAligner"
version = "1.2.2"
description = "OntoAligner: A Comprehensive Modular and Robust Python Toolkit for Ontology Alignment."
authors = ["Hamed Babaei Giglou <hamedbabaeigiglou@gmail.com>"]
license = "Apache Software License"
readme = "README.md"
homepage = "https://ontoaligner.readthedocs.io/"
repository = "https://github.com/sciknoworg/OntoAligner/"
include = ["images/logo-with-background.png"]
[tool.poetry.dependencies]
python = ">=3.10,<4.0.0"
pathlib = "*"
argparse = "*"
numpy = "*"
pandas = "*"
datasets = "*"
scikit-learn = "*"
tqdm = "4.66.3"
owlready2 = "0.44"
rdflib = "7.1.1"
ontospy = "2.1.1"
torch = "2.5.0"
transformers = "4.46.0"
rapidfuzz = "3.5.2"
openai = "1.56.0"
rank_bm25 = "0.2.2"
huggingface_hub="0.23.5"
sentence-transformers = "2.2.2"
setfit = "1.0.3"
[tool.poetry.dev-dependencies]
ruff = "*"
pre-commit = "*"
setuptools = "*"
wheel = "*"
twine = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"