2014-03-01 03:57:40 +00:00
|
|
|
from setuptools import setup
|
|
|
|
|
2015-03-07 02:20:14 +00:00
|
|
|
VERSION="0.1.6~git"
|
|
|
|
|
2014-03-01 03:57:40 +00:00
|
|
|
setup (
|
|
|
|
name='img2pdf',
|
2015-03-07 02:20:14 +00:00
|
|
|
version=VERSION,
|
2014-03-01 03:57:40 +00:00
|
|
|
author = "Johannes 'josch' Schauer",
|
2014-09-07 05:58:40 +00:00
|
|
|
author_email = 'j.schauer@email.de',
|
2014-03-01 03:57:40 +00:00
|
|
|
description = "Convert images to PDF via direct JPEG inclusion.",
|
|
|
|
long_description = open('README.md').read(),
|
2014-03-30 06:10:12 +00:00
|
|
|
license = "LGPL",
|
2014-03-01 03:57:40 +00:00
|
|
|
keywords = "jpeg pdf converter",
|
|
|
|
classifiers = [
|
|
|
|
'Development Status :: 4 - Beta',
|
|
|
|
'Intended Audience :: Developers',
|
|
|
|
'Programming Language :: Python',
|
|
|
|
'Programming Language :: Python :: 2',
|
|
|
|
'Programming Language :: Python :: 2.6',
|
|
|
|
'Programming Language :: Python :: 2.7',
|
2015-01-07 14:56:24 +00:00
|
|
|
'Programming Language :: Python :: 3',
|
|
|
|
'Programming Language :: Python :: 3.4',
|
2014-03-01 03:57:40 +00:00
|
|
|
'Programming Language :: Python :: Implementation :: CPython',
|
2014-03-30 06:10:12 +00:00
|
|
|
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
|
2014-03-01 03:57:40 +00:00
|
|
|
'Programming Language :: Python',
|
|
|
|
'Natural Language :: English',
|
|
|
|
'Operating System :: OS Independent'],
|
2014-09-07 05:57:29 +00:00
|
|
|
url = 'https://github.com/josch/img2pdf',
|
2015-03-07 02:20:14 +00:00
|
|
|
download_url = 'https://github.com/josch/img2pdf/archive/'+VERSION+'.tar.gz',
|
2014-03-01 03:57:40 +00:00
|
|
|
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
|
|
|
|
''',
|
|
|
|
)
|