From 58711bbda0c2354b7a173ddebf4809cfbdf2cfad Mon Sep 17 00:00:00 2001 From: Martin Vilcans Date: Tue, 14 Oct 2014 23:09:31 +0200 Subject: Check for Reportlab. Required for PDF output. --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 86c53f6..b158c28 100755 --- a/setup.py +++ b/setup.py @@ -9,9 +9,9 @@ setup( author='Martin Vilcans', author_email='screenplain@librador.com', url='http://www.screenplain.com/', - requires=[ - 'reportlab', - ], + extras_require={ + 'PDF': 'reportlab' + }, packages=[ 'screenplain', 'screenplain.export', -- cgit