From e4ce1dae3549f46309f62a66a8542cab8d73ee22 Mon Sep 17 00:00:00 2001 From: "James R. Barlow" Date: Fri, 27 Jan 2017 00:37:05 -0800 Subject: [PATCH] setup.py: for some reason, subpackages must be explicitly specified --- requirements.txt | 1 - setup.py | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 51ff74d7..a19ba791 100644 --- a/requirements.txt +++ b/requirements.txt @@ -7,4 +7,3 @@ reportlab == 3.3.0 PyPDF2 == 1.26 img2pdf == 0.2.1 cffi == 1.9.1 --e . diff --git a/setup.py b/setup.py index c1ccbfaf..000448a7 100644 --- a/setup.py +++ b/setup.py @@ -192,7 +192,7 @@ setup( author='James R. Barlow', author_email='jim@purplerock.ca', license='MIT', - packages=['ocrmypdf'], + packages=['ocrmypdf', 'ocrmypdf.exec'], keywords=['PDF', 'OCR', 'optical character recognition', 'PDF/A', 'scanning'], classifiers=[ "Programming Language :: Python :: 3",