From a404a37749b5d8a950621cbfd662ce31775ab515 Mon Sep 17 00:00:00 2001 From: "Phyks (Lucas Verney)" Date: Mon, 21 Mar 2016 16:57:00 +0100 Subject: [PATCH] Fix ImportError when importing after system-wide installation --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index ea8169d..d1c6415 100644 --- a/setup.py +++ b/setup.py @@ -36,6 +36,6 @@ setup( author_email='phyks@phyks.me', license='MIT License', description='A (sane) Python plotting module, abstracting on top of Matplotlib.', - packages=['replot'], + packages=['replot', 'replot.grid', 'replot.helpers'], install_requires=install_requires )