-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (57 loc) · 1.51 KB
/
pyproject.toml
File metadata and controls
69 lines (57 loc) · 1.51 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
[project]
name = "unstructured-client"
dynamic = ["version"]
description = "Python Client SDK for Unstructured API"
authors = [{ name = "Unstructured" },]
readme = "README-PYPI.md"
requires-python = ">=3.11"
dependencies = [
"aiofiles >=25.1.0",
"httpcore >=1.0.9",
"httpx >=0.28.1",
"pydantic >=2.12.5",
"pypdf >=6.9.2",
"pypdfium2 >=5.6.0",
"requests-toolbelt >=1.0.0",
]
urls.repository = "https://github.com/Unstructured-IO/unstructured-python-client.git"
license = { text = "MIT" }
[dependency-groups]
dev = [
"deepdiff >=9.0.0",
"freezegun >=1.5.5",
"mypy >=1.20.0",
"pylint >=3.3.9",
"pytest >=8.4.2",
"pytest-asyncio >=1.3.0",
"pytest-httpx >=0.35.0",
"pytest-mock >=3.15.1",
"pytest-xdist >=3.8.0",
"types-aiofiles >=25.1.0.20251011",
"uvloop >=0.22.1",
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.dynamic]
version = { attr = "unstructured_client._version.__version__" }
[tool.setuptools.package-data]
"*" = ["py.typed", "src/unstructured_client/py.typed"]
[build-system]
requires = ["setuptools>=80", "wheel"]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
asyncio_default_fixture_loop_scope = "function"
pythonpath = ["src"]
[tool.mypy]
disable_error_code = "misc"
explicit_package_bases = true
mypy_path = "src"
[[tool.mypy.overrides]]
module = "typing_inspect"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "jsonpath"
ignore_missing_imports = true
[tool.pyright]
venvPath = "."
venv = ".venv"