1
0
mirror of https://github.com/kanzure/pdfparanoia.git synced 2024-12-04 23:15:52 +01:00

fix README packaging

This commit is contained in:
Bryan Bishop 2013-02-05 03:56:07 -06:00
parent d8fc6c1d8f
commit 99c88643f7
2 changed files with 5 additions and 4 deletions

View File

@ -17,8 +17,8 @@ usage:
"""
__title__ = "pdfparanoia"
__version__ = "0.0.1"
__build__ = 0x000001
__version__ = "0.0.2"
__build__ = 0x000002
__author__ = "Bryan Bishop <kanzure@gmail.com>"
__license__ = "BSD"
__copyright__ = "Copyright 2013 Bryan Bishop"

View File

@ -3,7 +3,7 @@ from setuptools import setup
setup(
name="pdfparanoia",
version="0.0.1",
version="0.0.2",
url="https://github.com/kanzure/pdfparanoia",
license="BSD",
author="Bryan Bishop",
@ -11,8 +11,9 @@ setup(
description="pdf watermark remover library for academic papers",
long_description=open("README.md", "r").read(),
packages=["pdfparanoia"],
zip_safe=False,
package_data={'': ['README.md']},
include_package_data=True,
zip_safe=False,
install_requires=["pdfminer>=0", "pdfquery>=0"],
platforms="any",
classifiers=[