forked from SuleyNL/Extractable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
93 lines (75 loc) · 2.04 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
#requires = ["setuptools @ git+https://github.com/pypa/setuptools.git@main", "wheel", "src"]
#requires = ["setuptools>=61", "wheel", "src"]
#build-backend = "setuptools.build_meta"
[project]
name = "extractable"
version = "1.0.2"
description = "Extract tables from PDFs"
authors = [
{name = "Suleymen C. Kandrouch", email = "[email protected]"},
]
dependencies = [
"Faker ~= 18.9.0",
"Pillow >= 9.2.0",
"PyPDF2 ~= 3.0.1",
"build ~= 0.10.0",
"defusedxml ~= 0.7.1",
"matplotlib >=3",
"mkdocs ~= 1.4.3",
"openpyxl ~= 3.1.2",
"pandas ~= 2.0.2",
"pandas-stubs ~= 2.0.2.230605 ",
"pdf2image ~= 1.15.1",
"pdf2jpg ~= 1.1",
"pytesseract ~= 0.3.10",
"pytest >= 7.3.1",
"scipy ~= 1.10.1",
"setuptools >=61.0",
"svgwrite ~= 1.4.3",
"timm ~= 0.9.2",
"toolz ~= 0.12.0",
"torch ~= 2.1.0",
"transformers ~= 4.29.2",
"wheel ~= 0.40.0",
"bs4>=0.0.1",
"requests>=2.31.0",
"PyCryptodome>=3.18.0",
]
requires-python = ">=3.9,<3.12"
readme = "README.md"
license = {text = "MIT"}
keywords = ["python", "table-extraction", "pdf", "TATR", "Table Transformer", "Computer Vision"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
]
[project.urls]
Homepage = "https://github.com/SuleyNL/Extractable"
Downloads = "https://github.com/SuleyNL/Extractable/archive/refs/tags/v1.0.0.tar.gz"
[project.optional-dependencies]
dev = [
"pytest>=7.4.2",
"pdm>=2.7.0",
]
[tool.setuptools]
package-dir = {''= 'src'}
[tool.pdm]
package-dir = "src"
[tool.pdm.build]
includes = [ "src/extractable",
"src/TableGenerator",
"src/fpdf", ]
excludes = ["src/extractable/Tesseract-OCR", "src/test", "src/venv", "src/genalog", "src/weasyprint"]
[tool.pdm.dependencies]
pytest = ">=7.4.2"
[tool.pytest.ini_options]
pythonpath = [
".", "src/extractable"
]
[mypy]
ignore_missing_imports = "True"