You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
plakativ/setup.py

50 lines
1.8 KiB
Python

5 years ago
from setuptools import setup
VERSION = "0.5.2"
5 years ago
setup(
name="plakativ",
version=VERSION,
3 years ago
author="Johannes Schauer Marin Rodrigues",
5 years ago
author_email="josch@mister-muffin.de",
description="Convert a PDF into a large poster that can be printed on multiple smaller pages.",
long_description="file: README.md, CHANGELOG.rst",
license="GPL-3",
keywords="pdf poster",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Other Audience",
"Environment :: Console",
"Environment :: MacOS X",
"Environment :: Win32 (MS Windows)",
"Environment :: X11 Applications",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: OS Independent",
],
url="https://gitlab.mister-muffin.de/josch/plakativ",
download_url="https://gitlab.mister-muffin.de/josch/plakativ/repository/"
"archive.tar.gz?ref=" + VERSION,
py_modules=["plakativ"],
test_suite="pytest",
5 years ago
zip_safe=True,
include_package_data=True,
install_requires=["PyMuPDF", "img2pdf"],
5 years ago
entry_points={
"setuptools.installation": ["eggsecutable = plakativ:main"],
"console_scripts": ["plakativ = plakativ:main"],
"gui_scripts": ["plakativ-gui = plakativ:gui"],
},
data_files=[
("share/applications", ["de.mister-muffin.plakativ.desktop"]),
("share/pixmaps", ["plakativ.svg"]),
("share/metainfo", ["plakativ.appdata.xml"]),
],
5 years ago
)