From 858aaf0367d2105185ad7514838501757cddb1d3 Mon Sep 17 00:00:00 2001 From: Valentin Lorentz Date: Sat, 19 Dec 2015 21:21:45 +0100 Subject: [PATCH] Make setup.py actually work (find subpackages). --- setup.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index 25006c9..026a7fc 100755 --- a/setup.py +++ b/setup.py @@ -40,11 +40,10 @@ setup( # Installation data packages=[ 'irctest', + 'irctest.client_tests', + 'irctest.controllers', + 'irctest.irc_utils', ], - - package_dir={ - 'irctest': 'irctest', - }, ) # vim:set shiftwidth=4 softtabstop=4 expandtab textwidth=79: