-
Notifications
You must be signed in to change notification settings - Fork 17
/
pyproject.toml
67 lines (55 loc) · 1.43 KB
/
pyproject.toml
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
[tool.poetry]
name = "unstructured-client"
version = "0.27.0"
description = "Python Client SDK for Unstructured API"
authors = ["Unstructured",]
readme = "README-PYPI.md"
repository = "https://github.com/Unstructured-IO/unstructured-python-client.git"
license = "MIT"
packages = [
{ include = "unstructured_client", from = "src" }
]
include = ["py.typed", "src/unstructured_client/py.typed"]
[tool.setuptools.package-data]
"*" = ["py.typed", "src/unstructured_client/py.typed"]
[virtualenvs]
in-project = true
[tool.poetry.dependencies]
python = "^3.8"
cryptography = ">=3.1"
eval-type-backport = "^0.2.0"
httpx = ">=0.27.0"
jsonpath-python = "^1.0.6"
nest-asyncio = ">=1.6.0"
pydantic = "~2.9.2"
pypdf = ">=4.0"
python-dateutil = "2.8.2"
requests-toolbelt = ">=1.0.0"
typing-inspect = "^0.9.0"
aiofiles = ">=24.1.0"
[tool.poetry.group.dev.dependencies]
deepdiff = ">=6.0"
mypy = "==1.10.1"
pylint = "==3.2.3"
pytest = ">=8.3.3"
pytest-asyncio = ">=0.24.0"
pytest-mock = ">=3.14.0"
types-python-dateutil = "^2.9.0.20240316"
uvloop = ">=0.20.0"
types-aiofiles = "^24.1.0.20240626"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
pythonpath = ["src"]
[tool.mypy]
disable_error_code = "misc"
[[tool.mypy.overrides]]
module = "typing_inspect"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "jsonpath"
ignore_missing_imports = true
[tool.pyright]
venvPath = "."
venv = ".venv"