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 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98
|
# Copyright 2008-2025 by Hartmut Goebel <h.goebel@crazy-compilers.com>
# SPDX-License-Identifier: CC0-1.0
[sdist]
formats=gztar
[metadata]
name = pdfposter
version = attr: pdfposter.__version__
description = Scale and tile PDF images/pages to print on multiple pages.
long_description = file: README.txt
long_description_content_type = text/x-rst
url = https://pdfposter.readthedocs.io/
download_url = https://pypi.org/project/pdfposter/
author = Hartmut Goebel
author_email = h.goebel@crazy-compilers.com
license = GPL-3.0-or-later
license_files= LICENSES/*.txt
keywords = pdf, poster
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Console
Intended Audience :: Developers
Intended Audience :: End Users/Desktop
Intended Audience :: System Administrators
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
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 :: Printing
Topic :: Utilities
[options]
packages = find_namespace:
include_package_data = True
zip_safe = True
python_requires = >=3.8
install_requires =
pypdf >= 5.5
[options.packages.find]
include = pdfposter*
[options.package_data]
* = locale/*/*/*.mo
[options.entry_points]
console_scripts =
pdfposter = pdfposter.cmd:run
[zest.releaser]
history-file = CHANGES
push-changes = no
tag-format = v{version}
tag-message = pdfposter {version}
tag-signing = yes
create-wheel = yes
python-file-with-version = pdfposter/__init__.py
releaser.after_checkout =
_zest_release_hooks.compile_message_catalogs
_zest_release_hooks.build_man_pages
releaser.before_upload =
_zest_release_hooks.sign_release
_zest_release_hooks.run_twine_check
_zest_release_hooks.safe_dist_files
[flake8]
ignore = E203,E225
# babel integration
[extract_messages]
# extract/update message template, for every update
input_dirs = pdfposter
output_file = pdfposter/locale/pdfposter.pot
[init_catalog]
# create a new translation from the template, once per language
domain = pdfposter
input_file = pdfposter/locale/pdfposter.pot
output_dir = pdfposter/locale
[update_catalog]
# update an existing translation from the template
domain = pdfposter
input_file = pdfposter/locale/pdfposter.pot
output_dir = pdfposter/locale
[compile_catalog]
# compile the message catalogs
domain = pdfposter
directory = pdfposter/locale
|