-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
62 lines (55 loc) · 1.63 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
[tool.poetry]
name = "tahweel"
version = "0.1.0"
description = "تحويل ملفات PDF إلى Word و TXT"
authors = ["EasyBooks <easybooksdev@gmail.com>"]
license = "MIT"
readme = "README.md"
packages = [{ include = "tahweel" }]
keywords = ["tahweel", "ocr", "pdf", "word", "txt", "google-drive-api"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
homepage = "https://tahweel.ieasybooks.com"
repository = "https://github.com/ieasybooks/tahweel"
[tool.poetry.dependencies]
python = ">=3.10,<4.0"
typed-argument-parser = "^1.10.1"
google-api-python-client = "^2.149.0"
google-auth-oauthlib = "^1.2.1"
pdf2image = "^1.17.0"
platformdirs = "^4.3.6"
tqdm = "^4.66.5"
google-api-python-client-stubs = "^1.28.0"
python-docx = "^1.1.2"
pillow = "^11.0.0"
[tool.poetry.scripts]
tahweel = "tahweel.cli:main"
[tool.poetry.group.dev.dependencies]
pre-commit = "^4.0.1"
ruff = "^0.7.1"
[tool.ruff]
fix = true
indent-width = 2
line-length = 120
src = ["tahweel"]
target-version = "py310"
[tool.ruff.format]
quote-style = "single"
indent-style = "space"
[tool.ruff.lint.isort]
lines-between-types = 1
lines-after-imports = 2
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"