1
0
mirror of https://github.com/kanzure/pdfparanoia.git synced 2025-06-14 12:02:00 +02: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" __title__ = "pdfparanoia"
__version__ = "0.0.1" __version__ = "0.0.2"
__build__ = 0x000001 __build__ = 0x000002
__author__ = "Bryan Bishop <kanzure@gmail.com>" __author__ = "Bryan Bishop <kanzure@gmail.com>"
__license__ = "BSD" __license__ = "BSD"
__copyright__ = "Copyright 2013 Bryan Bishop" __copyright__ = "Copyright 2013 Bryan Bishop"

View File

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