From 38a051cb15bc728d4d17b716a1b67ae8d1d375d0 Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Sun, 16 Jan 2011 10:55:05 +0100 Subject: [PATCH] missing package data files for gdb support tests --- setup.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/setup.py b/setup.py index b62f4754..7be053a7 100644 --- a/setup.py +++ b/setup.py @@ -271,6 +271,9 @@ packages = [ if include_debugger: packages.append('Cython.Debugger') packages.append('Cython.Debugger.Tests') + # it's enough to do this for Py2.5+: + setup_args['package_data']['Cython.Debugger.Tests'] = ['codefile', 'cfuncs.c'] + setup( name = 'Cython', -- 2.26.2