forked from josch/img2pdf
prepare 0.1.1 release
This commit is contained in:
parent
0bdf6472f8
commit
43bbb27f00
2 changed files with 6 additions and 2 deletions
2
setup.cfg
Normal file
2
setup.cfg
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
[metadata]
|
||||||
|
description-file = README.md
|
6
setup.py
6
setup.py
|
@ -2,8 +2,9 @@ from setuptools import setup
|
||||||
|
|
||||||
setup (
|
setup (
|
||||||
name='img2pdf',
|
name='img2pdf',
|
||||||
version='0.1.0',
|
version='0.1.1',
|
||||||
author = "Johannes 'josch' Schauer",
|
author = "Johannes 'josch' Schauer",
|
||||||
|
author_email = 'j.schauer@email.de'
|
||||||
description = "Convert images to PDF via direct JPEG inclusion.",
|
description = "Convert images to PDF via direct JPEG inclusion.",
|
||||||
long_description = open('README.md').read(),
|
long_description = open('README.md').read(),
|
||||||
license = "LGPL",
|
license = "LGPL",
|
||||||
|
@ -20,7 +21,8 @@ setup (
|
||||||
'Programming Language :: Python',
|
'Programming Language :: Python',
|
||||||
'Natural Language :: English',
|
'Natural Language :: English',
|
||||||
'Operating System :: OS Independent'],
|
'Operating System :: OS Independent'],
|
||||||
url = 'http://pypi.python.org/pypi/img2pdf',
|
url = 'https://github.com/josch/img2pdf',
|
||||||
|
download_url = 'https://github.com/josch/img2pdf/archive/0.1.1.tar.gz',
|
||||||
package_dir={"": "src"},
|
package_dir={"": "src"},
|
||||||
py_modules=['img2pdf', 'jp2'],
|
py_modules=['img2pdf', 'jp2'],
|
||||||
include_package_data = True,
|
include_package_data = True,
|
||||||
|
|
Loading…
Reference in a new issue