-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (44 loc) · 1.1 KB
/
pyproject.toml
File metadata and controls
50 lines (44 loc) · 1.1 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
[tool.poetry]
name = "validex"
version = "0.0.3"
description = "A Python package to extract data from unstructured into structured format"
authors = ["Alexander Miasoiedov <msoedov@gmail.com>"]
maintainers = ["Alexander Miasoiedov <msoedov@gmail.com>"]
repository = "https://github.com/msoedov/validex"
license = "MIT"
readme = "Readme.md"
keywords = [
"nlp",
"extraction",
"openai",
"structured output parsing",
"fastapi",
"llm",
]
packages = [{ include = "validex", from = "." }]
[tool.poetry.dependencies]
python = "^3.10"
magentic = ">=0.34.1,<0.40.0"
stamina = ">=24.3,<26.0"
justext = "*"
cache_to_disk = "*"
rich = "^13.9.4"
requests = "*"
feedparser = "*"
pypdf = "^5.1.0"
pytest-asyncio = ">=0.24,<0.26"
[tool.poetry.group.dev.dependencies]
black = ">=24.10,<26.0"
httpx = "^0.28.1"
pytest = "^8.3.4"
types-requests = "^2.32.0.20241016"
pre-commit = "^4.0.1"
responses = "^0.25.3"
[tool.ruff]
line-length = 120
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"