From: Stefan Behnel Date: Mon, 30 Jul 2007 16:37:35 +0000 (+0200) Subject: fix target directory for Lexicon.pickle X-Git-Tag: 0.9.6.14~61^2~2 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=bccf2afc6d77f9f1d14c3524bdb5826c90eacd2f;p=cython.git fix target directory for Lexicon.pickle --- diff --git a/setup.py b/setup.py index cd4ecf48..b93499ef 100644 --- 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'] + } )