summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorIan Ward <ian@excess.org>2013-12-26 09:53:54 -0500
committerIan Ward <ian@excess.org>2013-12-26 09:53:54 -0500
commitee00377f13db3681128eea4b66a355a43782896e (patch)
tree1ac09ea8b989b4890945091f12cacb0f3bb71b64 /setup.py
parent3cff7c205e7dc72dbd96fc008500b5543d5d2842 (diff)
downloadurwid-ee00377f13db3681128eea4b66a355a43782896e.tar.gz
fix tests on python3
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 60161bc..e573bd0 100644
--- a/setup.py
+++ b/setup.py
@@ -44,7 +44,7 @@ setup_d = {
'author':"Ian Ward",
'author_email':"ian@excess.org",
'ext_modules':[Extension('urwid.str_util', sources=['source/str_util.c'])],
- 'packages':['urwid'],
+ 'packages':['urwid', 'urwid.tests'],
'url':"http://excess.org/urwid/",
'download_url':"http://excess.org/urwid/urwid-%s.tar.gz"%release,
'license':"LGPL",