-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make ray process in batches and bump version
- Loading branch information
1 parent
8ebc9c8
commit 7f3e202
Showing
3 changed files
with
41 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "pdf2dataset" | ||
version = "0.2.0" | ||
version = "0.2.1" | ||
readme = "README.md" | ||
description = "Easily convert a big folder with PDFs into a dataset, with extracted text using OCR" | ||
authors = ["Ícaro Pires <[email protected]>"] | ||
|
@@ -12,13 +12,14 @@ classifiers = [ | |
repository = "https://github.com/icaropires/pdf2dataset" | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.6" | ||
fastparquet = "0.4.0" | ||
more-itertools = 8.4.0 | ||
opencv-python = "4.2.0.34" | ||
packaging = "20.4" | ||
pdf2image = "1.13.1" | ||
pdftotext = "2.1.4" | ||
pytesseract = "0.3.4" | ||
python = "^3.6" | ||
ray = "0.8.6" | ||
tqdm = "4.47.0" | ||
|
||
|