Fix ImportError when importing after system-wide installation

This commit is contained in:
Lucas Verney 2016-03-21 16:57:00 +01:00
parent bc38a97025
commit a404a37749
1 changed files with 1 additions and 1 deletions

View File

@ -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
)