forked from msoedov/validex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
46 lines (42 loc) · 1007 Bytes
/
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
[tool.poetry]
name = "validex"
version = "0.0.1"
description = "A Python package to extract data from unstructured into structured format"
authors = ["Alexander Miasoiedov <[email protected]>"]
maintainers = ["Alexander Miasoiedov <[email protected]>"]
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.26.0"
stamina = "^24.2.0"
justext = "*"
cache_to_disk = "*"
rich = "*"
requests = "*"
feedparser = "*"
pypdf = "*"
pytest-asyncio = "*"
[tool.poetry.group.dev.dependencies]
black = "^23.7.0"
mypy = "^1.5.1"
httpx = "^0.24.1"
pytest = ">=7.4.1,<9.0.0"
types-requests = "^2.31.0.1"
pre-commit = "^3.4.0"
responses = "^0.14.0"
[tool.ruff]
line-length = 120
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"