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
|
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "qpageview"
dynamic = ["version"]
dependencies = ["PyQt6>=6.6"]
optional-dependencies = {cups = ["pycups"]}
requires-python = ">= 3.7"
description = "Widget to display page-based documents for Qt6/PyQt6"
readme = "README.rst"
maintainers = [{name = "Wilbert Berendsen", email = "info@frescobaldi.org"}]
license.text = "GPL v3"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Multimedia :: Graphics",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Programming Language :: Python :: 3.7",
]
[project.urls]
Homepage = "https://github.com/frescobaldi/qpageview"
Documentation = "https://qpageview.org"
"Issue tracker" = "https://github.com/frescobaldi/qpageview/issues"
[tool.hatch.version]
path = "qpageview/pkginfo.py"
pattern = "version_string = \"(?P<version>.*)\""
|