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"
__version__ = "0.0.4"
__build__ = 0x000004
__version__ = "0.0.5"
__build__ = 0x000005
__author__ = "Bryan Bishop <kanzure@gmail.com>"
__license__ = "BSD"
__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()
packages = [
"pdfparanoia",
"pdfparanoia.plugins",
]
setup(
name="pdfparanoia",
version="0.0.4",
version="0.0.5",
url="https://github.com/kanzure/pdfparanoia",
license="BSD",
author="Bryan Bishop",