37 lines
1.2 KiB
Python
37 lines
1.2 KiB
Python
|
from setuptools import setup
|
||
|
|
||
|
setup (
|
||
|
name='img2pdf',
|
||
|
version='0.1.0',
|
||
|
author = "Johannes 'josch' Schauer",
|
||
|
description = "Convert images to PDF via direct JPEG inclusion.",
|
||
|
long_description = open('README.md').read(),
|
||
|
license = "GPL",
|
||
|
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',
|
||
|
'Programming Language :: Python :: Implementation :: CPython',
|
||
|
'License :: OSI Approved :: General Public License',
|
||
|
'Programming Language :: Python',
|
||
|
'Natural Language :: English',
|
||
|
'Operating System :: OS Independent'],
|
||
|
url = 'http://pypi.python.org/pypi/img2pdf',
|
||
|
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
|
||
|
''',
|
||
|
)
|