forked from andrewdcampbell/OpenCV-Document-Scanner
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (45 loc) · 1.58 KB
/
pyproject.toml
File metadata and controls
50 lines (45 loc) · 1.58 KB
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
[project]
name = "phototoscan"
version = "0.1.5"
description = "A Python library that converts casual document snapshots into professional-quality scanned documents."
authors = [
{ name = "j-about", email = "142051449+j-about@users.noreply.github.com" },
{ name = "Andrew Campbell", email = "andrewc@captricity.com" },
{ name = "joaofauvel", email = "fauvel@tutanota.com" },
]
requires-python = ">=3.8"
dependencies = [
"numpy>=1.18.5,<2.0.0",
"ocrd-fork-pylsd>=0.0.3,<=0.0.8",
"opencv-python>=4.2.0.34,<=5.0.0.0",
"puremagic>=1.29,<2.0",
"scipy>=1.5,<2.0",
]
readme = "README.md"
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Multimedia :: Graphics :: Capture :: Scanners",
"Topic :: Scientific/Engineering :: Image Processing",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.urls]
Homepage = "https://github.com/j-about/PhotoToScan"
Issues = "https://github.com/j-about/PhotoToScan/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project.scripts]
phototoscan = "phototoscan:main"
[[tool.uv.index]]
name = "testpypi"
url = "https://test.pypi.org/simple/"
publish-url = "https://test.pypi.org/legacy/"
explicit = true