-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (32 loc) · 878 Bytes
/
pyproject.toml
File metadata and controls
35 lines (32 loc) · 878 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "transklate"
version = "0.1.0"
dependencies = [
"pytesseract==0.3.13",
"regex==2024.11.6",
"IronPdf==2025.1.1.1",
"click==8.1.*",
"PyMuPDF==1.25.2",
"alive-progress==3.2.0",
"deep-translator==1.11.4"
]
requires-python = ">=3.9"
authors = [
{name = "Frédérique Michèle Rey", email = "frederique.rey@hu-berlin.de"},
]
maintainers = [
{name = "Frédérique Michèle Rey", email = "frederique.rey@hu-berlin.de"},
]
description = "Use OCR Tesseract to convert Hebrew PDFs to text files and then translate them."
readme = "README.md"
license = "MIT"
license-file = "LICENCE.txt"
keywords = ["OCR", "transcribe", "hebrew", "translation"]
classifiers = [
"Programming Language :: Python"
]
[project.scripts]
transklate = "transklate.transklate:transcribe"