1
0
mirror of https://github.com/kanzure/pdfparanoia.git synced 2024-06-10 12:49:52 +02:00

include plugins in package

This commit is contained in:
Bryan Bishop 2013-02-05 04:20:26 -06:00
parent 99285252fc
commit 302d2ff2e5
2 changed files with 8 additions and 3 deletions

View File

@ -17,8 +17,8 @@ usage:
""" """
__title__ = "pdfparanoia" __title__ = "pdfparanoia"
__version__ = "0.0.4" __version__ = "0.0.5"
__build__ = 0x000004 __build__ = 0x000005
__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

@ -4,9 +4,14 @@ import os
long_description = open(os.path.join(os.path.dirname(__file__), "README.md")).read() long_description = open(os.path.join(os.path.dirname(__file__), "README.md")).read()
packages = [
"pdfparanoia",
"pdfparanoia.plugins",
]
setup( setup(
name="pdfparanoia", name="pdfparanoia",
version="0.0.4", version="0.0.5",
url="https://github.com/kanzure/pdfparanoia", url="https://github.com/kanzure/pdfparanoia",
license="BSD", license="BSD",
author="Bryan Bishop", author="Bryan Bishop",