From 5418542d5680d15576a143f235965b9447d5b48d Mon Sep 17 00:00:00 2001 From: Sunil Mohan Adapa Date: Sun, 12 Oct 2014 19:18:18 +0530 Subject: [PATCH] Fix issue with plinth module not getting installed --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 68bcf3ede..453cc2cfc 100755 --- a/setup.py +++ b/setup.py @@ -72,7 +72,8 @@ setuptools.setup( author='Plinth Authors', author_email='freedombox-discuss@lists.alioth.debian.org', url='http://freedomboxfoundation.org', - packages=find_packages(include=['plinth.*'], exclude=['*.templates']), + packages=find_packages(include=['plinth', 'plinth.*'], + exclude=['*.templates']), scripts=['bin/plinth'], test_suite='plinth.tests.TEST_SUITE', license='COPYING',