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

52 lines
1.7 KiB
Python
Raw Normal View History

import sys
from setuptools import setup
2020-04-30 20:18:54 +00:00
VERSION = "0.3.6"
INSTALL_REQUIRES = (
'Pillow',
2020-05-31 15:18:02 +00:00
'pikepdf',
)
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(),
long_description_content_type='text/markdown',
license="LGPL",
keywords="jpeg pdf converter",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Other Audience',
'Environment :: Console',
'Programming Language :: Python',
2015-01-07 14:56:24 +00:00
'Programming Language :: Python :: 3',
2017-01-20 04:21:27 +00:00
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: Implementation :: CPython',
"Programming Language :: Python :: Implementation :: PyPy",
'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,
zip_safe=True,
install_requires=INSTALL_REQUIRES,
extras_require={
2019-08-25 04:03:48 +00:00
'gui': ('tkinter'),
},
entry_points={
"setuptools.installation": ["eggsecutable = img2pdf:main"],
"console_scripts": ["img2pdf = img2pdf:main"],
"gui_scripts": ["img2pdf-gui = img2pdf:gui"],
},
)