-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
33 lines (31 loc) · 1009 Bytes
/
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
tool = { rye = { dev-dependencies = ["pytest>=8.2.2", "marimo>=0.7.0"] } }
[project]
name = "Perspectra"
version = "0.1.0"
description = "Automatically extract and perspectively correct documents in images"
readme = "readme.md"
requires-python = ">=3.10"
license = { text = "ISC" }
authors = [{ name = "Adrian Sieber", email = "[email protected]" }]
keywords = ["document scanner", "perspective transformation"]
classifiers = [
"Programming Language :: Python :: 3",
"Development Status :: 3 - Alpha",
"Natural Language :: English",
"Environment :: Desktop",
"Intended Audience :: Prosumers",
"Operating System :: OS Independent",
"Topic :: Computer Vision",
]
urls = { "Homepage" = "http://github.com/feramhq/perspectra" }
dependencies = [
"imageio>=2.1.0",
"matplotlib>=2.0.0",
"numpy>=2.0.0",
"scikit-image>=0.24.0",
"plotly>=5.22.0",
"pandas>=2.2.2",
]
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"