forked from sciknoworg/OntoLearner
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (46 loc) · 1.23 KB
/
pyproject.toml
File metadata and controls
50 lines (46 loc) · 1.23 KB
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
[tool.poetry]
name = "OntoLearner"
version = "0.0.0"
description = "OntoLearner: A Modular Python Library for Ontology Learning with LLMs."
authors = ["Hamed Babaei Giglou <hamedbabaeigiglou@gmail.com>", "Andrei C. Aioanei <andrei.c.aioanei@gmail.com>"]
license = "MIT License"
readme = "README.md"
homepage = "https://ontolearner.readthedocs.io/"
repository = "https://github.com/sciknoworg/OntoLearner/"
include = ["images/logo.png"]
[tool.poetry.dependencies]
python = ">=3.10,<3.14.0"
rdflib = "7.1.1"
networkx = "3.2.1"
numpy = "*"
pandas = "*"
openpyxl = "*"
tqdm = "*"
pydantic = "2.11.3"
pathlib = "1.0.1"
python-dotenv = "*"
matplotlib = "*"
seaborn = "*"
scikit-learn = "*"
huggingface-hub = "^0.34.4"
torch = "^2.8.0"
transformers = "^4.56.0"
sentence-transformers = "^5.1.0"
dspy = "^2.6.14"
bitsandbytes="^0.45.1"
mistral-common = { version = "^1.8.5", extras = ["sentencepiece"] }
[tool.poetry.dev-dependencies]
ruff = "*"
pre-commit = "*"
setuptools = "*"
wheel = "*"
twine = "*"
pytest = "*"
[tool.poetry-dynamic-versioning]
enable = true
style = "semver"
source = "attr"
attr = "ontolearner.__version__"
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning>=1.4.0"]
build-backend = "poetry_dynamic_versioning.backend"