File: pyproject.toml

package info (click to toggle)
scantpaper 3.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 4,936 kB
  • sloc: python: 46,241; xml: 81; makefile: 11
file content (35 lines) | stat: -rw-r--r-- 862 bytes parent folder | download
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
[project]
name = "scantpaper"
version = "3.0.0"
dependencies = [
  "img2pdf",
  "ocrmypdf>=15.4.3",
  "pycairo",
  "PyGObject",
  "python-sane",
  "tesserocr",
  "python-iso639",
]
requires-python = ">=3.8"
authors = [
  {name = "Jeffrey Ratcliffe", email = "jffry@posteo.net"},
]
maintainers = [
  {name = "Jeffrey Ratcliffe", email = "jffry@posteo.net"},
]
description = "GUI to produce PDFs or DjVus from scanned documents"
readme = "README.md"
license = { text = "GPL-3.0-only" }
keywords = ['scan', 'pdf', 'djvu']
classifiers = [
  "Development Status :: 4 - Beta",
  "Programming Language :: Python"
]

[project.urls]
Homepage = "https://github.com/carygravel/scantpaper"
Repository = "https://github.com/carygravel/scantpaper.git"
"Bug Tracker" = "https://github.com/carygravel/scantpaper/issues"

[project.gui-scripts]
scantpaper = "scantpaper.app:main"