From 65960d846bed2bbc1a83269b715bb78e83e36478 Mon Sep 17 00:00:00 2001 From: Johannes Schauer Date: Tue, 16 Aug 2016 16:35:49 +0200 Subject: Import img2pdf_0.2.1.orig.tar.gz [dgit import orig img2pdf_0.2.1.orig.tar.gz] --- setup.py | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 setup.py (limited to 'setup.py') diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..50de1e6 --- /dev/null +++ b/setup.py @@ -0,0 +1,42 @@ +from setuptools import setup + +VERSION = "0.2.1" + +setup( + name='img2pdf', + version=VERSION, + author="Johannes 'josch' Schauer", + author_email='josch@mister-muffin.de', + description="Convert images to PDF via direct JPEG inclusion.", + long_description=open('README.md').read(), + license="LGPL", + keywords="jpeg pdf converter", + classifiers=[ + 'Development Status :: 5 - Production/Stable', + 'Intended Audience :: Developers', + 'Intended Audience :: Other Audience', + 'Environment :: Console', + 'Programming Language :: Python', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: Implementation :: CPython', + 'License :: OSI Approved :: GNU Lesser General Public License v3 ' + '(LGPLv3)', + 'Natural Language :: English', + 'Operating System :: OS Independent'], + url='https://gitlab.mister-muffin.de/josch/img2pdf', + download_url='https://gitlab.mister-muffin.de/josch/img2pdf/repository/' + 'archive.tar.gz?ref=' + VERSION, + package_dir={"": "src"}, + py_modules=['img2pdf', 'jp2'], + include_package_data=True, + test_suite='tests.test_suite', + zip_safe=True, + install_requires=( + 'Pillow', + ), + entry_points=''' + [console_scripts] + img2pdf = img2pdf:main + ''', + ) -- cgit v1.2.3