projects
/
cython.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5692f74
)
missing package data files for gdb support tests
author
Stefan Behnel
<scoder@users.berlios.de>
Sun, 16 Jan 2011 09:55:05 +0000
(10:55 +0100)
committer
Stefan Behnel
<scoder@users.berlios.de>
Sun, 16 Jan 2011 09:55:05 +0000
(10:55 +0100)
setup.py
patch
|
blob
|
history
diff --git
a/setup.py
b/setup.py
index b62f4754c02a5fa711b7f2ceb215f35f86763e91..7be053a781f470efe39fd64d2234310df55fb12a 100644
(file)
--- 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',