forked from yifanfeng97/Hyper-Extract
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
95 lines (86 loc) · 2.23 KB
/
Copy pathpyproject.toml
File metadata and controls
95 lines (86 loc) · 2.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
[project]
name = "hyperextract"
version = "0.2.0"
description = "An intelligent, LLM-powered knowledge extraction and evolution framework with semantic search capabilities"
readme = "README.md"
requires-python = ">=3.11"
keywords = [
"llm",
"knowledge-extraction",
"langchain",
"faiss",
"semantic-search",
"pydantic",
"nlp",
"rag",
]
authors = [{ name = "Yifan Feng", email = "evanfeng97@gmail.com" }]
license = { text = "Apache-2.0" }
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"faiss-cpu>=1.13.2",
"langchain>=1.2.6",
"langchain-community>=0.4.1",
"langchain-openai>=1.1.7",
"structlog>=25.5.0",
"ontomem>=0.2.3",
"ontosight>=0.1.8",
"python-dotenv>=1.2.1",
"semhash>=0.4.1",
# cli dependencies
"typer>=0.13.0",
"rich>=13.7.0",
"tomli-w>=1.0.0",
]
[dependency-groups]
dev = [
"mkdocs>=1.6.1",
"mkdocs-material>=9.7.1",
"mkdocs-static-i18n>=1.0.0",
"mkdocstrings[python]>=1.0.0",
"pymdown-extensions>=10.0",
"mike>=2.0",
"pytest>=9.0.2",
]
[project.optional-dependencies]
anthropic = ["langchain-anthropic>=0.3.0"]
google = ["langchain-google-genai>=2.1.0"]
all = [
"hyperextract[anthropic,google]",
]
[project.urls]
Homepage = "https://github.com/yifanfeng97/hyper-extract"
Repository = "https://github.com/yifanfeng97/hyper-extract"
Issues = "https://github.com/yifanfeng97/hyper-extract/issues"
[project.scripts]
he = "hyperextract.cli:app"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build]
exclude = [
"docs/",
"tests/",
".github/",
"*.md",
"mkdocs.yml",
"docs_hooks.py",
".env",
".env.example",
".python-version",
"uv.lock",
]
[tool.hatch.build.targets.wheel]
packages = ["hyperextract"]
[tool.ruff.lint]
ignore = ["E731"]