-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (31 loc) · 931 Bytes
/
Copy pathpyproject.toml
File metadata and controls
43 lines (31 loc) · 931 Bytes
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
[tool.poetry]
name = "pdf-gpt4-json"
version = "0.1.2"
description = "Use GTP4-Vision as a better than OCR data extractor"
authors = ["Maximo G."]
license = "GPL-3.0-or-later"
readme = "README.md"
homepage = "https://github.com/maximoguerrero/PDF-GPT4-JSON"
repository = "https://github.com/maximoguerrero/PDF-GPT4-JSON"
[tool.poetry.dependencies]
python = "^3.10"
typer = "^0.9.0"
pypdfium2 = "^4.28.0"
split-image = "^2.0.1"
requests = "^2.31.0"
[tool.poetry.dev-dependencies]
pylint = "^2.4.4"
rope = "^0.14.0"
taskipy = "^1.0.1"
[tool.poetry.scripts]
pdf-gpt4-json = "pdf_gpt4_json.main:run"
[tool.taskipy.tasks]
test = "python -m unittest tests/test_*.py"
post_test = "task lint"
lint = "task lint_pylint && task lint_mypy"
lint_pylint = "pylint tests pdf_gpt4_json"
pre_publish = "./task test"
publish = "poetry publish --build"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"