-
Notifications
You must be signed in to change notification settings - Fork 18
/
pyproject.toml
53 lines (49 loc) · 1.26 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
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[project]
authors = [
{email = "louismmx@gmail.com", name = "Louis Maddox"}
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"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",
"Topic :: Multimedia :: Graphics :: Graphics Conversion",
"Topic :: Scientific/Engineering :: Image Processing"
]
dependencies = [
"numpy",
"matplotlib",
"scipy",
"sympy",
"opencv-python",
"tomlkit",
"toml"
]
description = "Page dewarping and thresholding using a cubic sheet model."
keywords = [
"image processing",
"cubic spline",
"dewarping",
"document scanning",
"image correction",
"computer vision"
]
license = {text = "MIT"}
name = "page-dewarp"
readme = "README.md"
requires-python = ">=3.8"
version = "0.1.5"
[project.scripts]
page-dewarp = "page_dewarp.__main__:main"
[project.urls]
Homepage = "https://github.com/lmmx/page-dewarp"
Repository = "https://github.com/lmmx/page-dewarp.git"
[tool.pdm]