-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (52 loc) · 1.61 KB
/
pyproject.toml
File metadata and controls
57 lines (52 loc) · 1.61 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
51
52
53
54
55
56
57
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "schema_miner"
version = "3.2.0"
description = "A Human-in-the-Loop Workflow for Scientific Schema Mining with Large Language Models"
authors = [
{name = "Sameer Sadruddin", email = "sameer.sadruddin@tib.eu"},
{name = "Jennifer D'Souza", email = "jennifer.dsouza@tib.eu"}
]
maintainers = [
{name = "Sameer Sadruddin", email = "sameer.sadruddin@tib.eu"}
]
dependencies = [
"evaluate>=0.4.6",
"langchain>=1.2.12",
"langchain_community>=0.4.1",
"langchain_core>=1.2.20",
"langchain_ollama>=1.0.1",
"langchain_openai>=1.1.11",
"langchain-huggingface>=1.2.1",
"langchain-text-splitters>=1.1.1",
"langchain_classic>=1.0.3",
"pandas>=3.0.1",
"python-dotenv>=1.2.2",
"PyYAML>=6.0.3",
"transformers>=5.3.0",
"rdflib>=7.6.0",
"faiss-cpu>=1.13.2",
"sphinx>=9.1.0",
"sphinx-rtd-theme>=3.1.0",
"typer>=0.24.1",
"mistral-common>=1.10.0",
"pypdf>=6.9.1",
"torch>=2.10.0",
"accelerate>=1.13.0"
]
requires-python = ">=3.12"
readme = "README_PYPI.md"
license = "MIT"
keywords = ["Schema Discovery", "Schema Mining", "Scientific Schemas", "Large Language Models", "Human-in-the-loop Workflow"]
[project.urls]
homepage = "https://github.com/sciknoworg/schema-miner"
repository = "https://github.com/sciknoworg/schema-miner"
Documentation = "https://schema-miner.readthedocs.io"
[tool.setuptools.packages.find]
include = ["schema_miner*"]
[tool.setuptools.package-data]
schema_miner = ["schemas/*.json"]
[project.scripts]
schema-miner = "schema_miner.cli:app"