-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (41 loc) · 1.25 KB
/
pyproject.toml
File metadata and controls
46 lines (41 loc) · 1.25 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
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "langchain-xparse"
version = "1.2.0"
description = "LangChain integration with xParse Parse API for intelligent document parsing"
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
authors = [
{name = "intsig-textin", email = "wangxuetongxztx@163.com"}
]
maintainers = [
{name = "intsig-textin", email = "wangxuetongxztx@163.com"}
]
keywords = ["langchain", "xparse", "document-loader", "textin", "parsing"]
dependencies = [
"langchain-core>=1.0",
"httpx>=0.24",
]
[project.optional-dependencies]
dev = [
"pytest>=7",
"pytest-asyncio>=0.21",
"python-dotenv>=1.0",
]
[project.urls]
Homepage = "https://github.com/intsig-textin/langchain-xparse"
Source = "https://github.com/intsig-textin/langchain-xparse"
Documentation = "https://docs.textin.com/api-reference/endpoint/xparse/v1/parse-sync"
"Bug Tracker" = "https://github.com/intsig-textin/langchain-xparse/issues"
[tool.setuptools.packages.find]
where = ["."]
include = ["langchain_xparse*"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
markers = [
"integration: marks tests as integration (require XPARSE_APP_ID, XPARSE_SECRET_CODE)",
]