projects
/
cython.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4e6494f
)
fix target directory for Lexicon.pickle
author
Stefan Behnel
<scoder@users.berlios.de>
Mon, 30 Jul 2007 16:37:35 +0000
(18:37 +0200)
committer
Stefan Behnel
<scoder@users.berlios.de>
Mon, 30 Jul 2007 16:37:35 +0000
(18:37 +0200)
setup.py
patch
|
blob
|
history
diff --git
a/setup.py
b/setup.py
index cd4ecf48eea905c85c49977fb58ea950479d41f8..b93499ef81f2f225fd57e7f89e85a9cf3c182362 100644
(file)
--- a/
setup.py
+++ b/
setup.py
@@
-57,8
+57,8
@@
setup(
'Cython.Mac',
'Cython.Plex'
],
- data_files=[
- (compiler_dir, ['Cython/Compiler/Lexicon.pickle'])
- ]
+ package_data = {
+ 'Cython.Compiler' : ['Lexicon.pickle']
+ }
)