1
0
Fork 0
forked from josch/plakativ
plakativ/setup.py

50 lines
1.8 KiB
Python
Raw Normal View History

2019-06-30 23:39:09 +00:00
from setuptools import setup
2024-01-12 08:47:42 +00:00
VERSION = "0.5.2"
2019-06-30 23:39:09 +00:00
setup(
name="plakativ",
version=VERSION,
2021-10-09 18:25:43 +00:00
author="Johannes Schauer Marin Rodrigues",
2019-06-30 23:39:09 +00:00
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,
2020-06-09 22:18:19 +00:00
py_modules=["plakativ"],
test_suite="pytest",
2019-06-30 23:39:09 +00:00
zip_safe=True,
include_package_data=True,
install_requires=["PyMuPDF", "img2pdf"],
2019-06-30 23:39:09 +00:00
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"]),
],
2019-06-30 23:39:09 +00:00
)