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
|
[sdist]
formats=gztar
[bdist]
formats=egg
[zest.releaser]
python-file-with-version = ghostscript/_gsprint.py
push-changes = no
tag-format = v{version}
tag-message = python-ghostscript {version}
tag-signing = yes
create-wheel = yes
releaser.before_upload =
_zest_release_hooks.sign_release
_zest_release_hooks.run_twine_check
_zest_release_hooks.safe_dist_files
[metadata]
name = ghostscript
version = attr:ghostscript.__version__
author = Hartmut Goebel
author_email = h.goebel@crazy-compilers.com
description = Interface to the Ghostscript C-API, both high- and low-level, based on ctypes
long_description = file:README.rst
long_description_content_type = text/x-rst
keywords = Ghostscript, PDF, Postscript
url = https://gitlab.com/pdftools/python-ghostscript
download_url = https://pypi.python.org/pypi/ghostscript
license = GPL-3.0-or-later
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
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 :: Software Development :: Libraries :: Python Modules
[options]
packages = find:
zip_safe = True
[options.packages.find]
exclude = tests
[options.package_data]
# If any package contains *.txt or *.rst files, include them:
* = *.txt, *.rst
|