-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (63 loc) · 1.66 KB
/
pyproject.toml
File metadata and controls
70 lines (63 loc) · 1.66 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
[project]
name = "unstract-client"
dynamic = ["version"]
description = "Python client for the Unstract LLM-powered structured data extraction platform"
authors = [
{name = "Zipstack Inc", email = "devsupport@zipstack.com"},
]
dependencies = [
"requests>=2.32.3",
"tenacity>=8.2.0",
]
requires-python = ">=3.11"
readme = "README.md"
urls = { Homepage = "https://unstract.com", Source = "https://github.com/Zipstack/unstract-python-client" }
license = {text = "MIT"}
keywords = ["unstract cli apps sdk"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "src/unstract/api_deployments/__init__.py"
[tool.hatch.build.targets.wheel]
packages = ["src/unstract"]
[dependency-groups]
dev = [
"python-dotenv>=1.0.0",
{include-group = "test"},
{include-group = "lint"},
]
test = [
"pytest>=8.2.2",
"pytest-mock>=3.14.0",
"pytest-dotenv>=0.5.2",
"pytest-cov>=5.0.0",
"pytest-md-report>=0.6.2",
"python-dotenv>=1.0.0",
]
lint = [
"ruff>=0.15.0",
"docutils~=0.20.1",
"pre-commit>=4.0.0",
"yamllint>=1.35.1",
"mypy~=1.10.0",
]
[tool.ruff]
line-length = 88
[tool.ruff.lint]
select = ["E", "F", "W", "I"]
[tool.pytest.ini_options]
env_files = ["tests/.env"]
addopts = "-s"
log_level = "INFO"
log_cli = true