-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
84 lines (72 loc) · 2.41 KB
/
Copy pathpyproject.toml
File metadata and controls
84 lines (72 loc) · 2.41 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/langchain_xberg"]
[tool.hatch.build.targets.sdist]
include = ["src/langchain_xberg", "CHANGELOG.md", "LICENSE", "README.md", "pyproject.toml"]
[project]
name = "langchain-xberg"
version = "1.0.2"
description = "Xberg document loader for LangChain — extract text from 88+ file formats with true async and rich metadata"
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
authors = [{ name = "Xberg.dev", email = "admin@xberg.io" }]
keywords = [
"xberg",
"langchain",
"document-loader",
"text-extraction",
"pdf",
"ocr",
"rag",
"llm",
"ai",
"nlp",
"document-intelligence",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Text Processing :: General",
"Topic :: Text Processing :: Indexing",
"Typing :: Typed",
]
dependencies = ["langchain-core>=1.0,<2.0", "xberg>=1.0.0"]
[dependency-groups]
dev = ["pytest>=9.0", "pytest-asyncio>=0.24", "pytest-cov>=6.0", "ruff>=0.14", "mypy>=1.19", "pre-commit>=4.0"]
[project.urls]
Homepage = "https://github.com/xberg-io/langchain-xberg"
Documentation = "https://docs.xberg.io"
Repository = "https://github.com/xberg-io/langchain-xberg"
Issues = "https://github.com/xberg-io/langchain-xberg/issues"
Xberg = "https://github.com/xberg-io/xberg"
[tool.ruff]
target-version = "py310"
line-length = 120
[tool.ruff.lint]
select = ["ALL"]
ignore = ["D100", "D104", "D203", "D213", "COM812", "ISC001", "ANN401", "PLR0913"]
[tool.ruff.lint.per-file-ignores]
"tests/**" = ["S101", "D", "ANN", "SLF001", "PLR2004", "PLC0415", "PERF401", "PERF402", "TC003"]
[tool.mypy]
python_version = "3.10"
strict = true
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
markers = ["integration: real file extraction tests (no mocks, slower)"]
[tool.coverage.run]
source = ["langchain_xberg"]
[tool.coverage.report]
fail_under = 80