-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
65 lines (55 loc) · 1.99 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
[tool.poetry]
name = "look-like-scanned"
version = "1.0.6"
description = "Python script to make documents look like they were scanned."
authors = ["navchandar <12165092+navchandar@users.noreply.github.com>"]
repository = "https://github.com/navchandar/look-like-scanned"
homepage = "https://navchandar.github.io/look-like-scanned/"
readme = "README.md"
keywords = ["pdf", "scan", "scanner", "image-to-pdf", "pdf-to-scan", "convert-pdf"]
packages = [
{ include = "scanner" },
]
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Operating System :: Microsoft :: Windows',
'Operating System :: Microsoft :: Windows :: Windows 10',
'Operating System :: Microsoft :: Windows :: Windows 11',
'Operating System :: POSIX :: Linux',
'Environment :: Console',
'Programming Language :: Python',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
'Topic :: Text Processing',
]
[tool.poetry.dependencies]
python = "^3.8"
pillow = "^10.0.1"
pypdfium2 = "^4.20.0"
colorama = "^0.4.6"
[tool.poetry.scripts]
scanner = "scanner:main"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/navchandar/look-like-scanned/issues"
"Funding" = "https://www.buymeacoffee.com/navchandar/"
[tool.poetry.group.dev.dependencies]
black = "^24.1.1"
pytest = "^8.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
minversion = "6.0"
log_cli = 1
log_cli_level = "INFO"
log_cli_format = "%(asctime)s [%(levelname)s] %(module)s.%(funcName)s.%(lineno)d: %(message)s"
log_cli_date_format = "%H:%M:%S"