From: Robert Bradshaw Date: Wed, 11 Jun 2008 20:15:15 +0000 (-0700) Subject: Cleanup MANIFEST X-Git-Tag: 0.9.8rc1~8 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=3c71d2f2925977f69089af942b9fa878b590cf70;p=cython.git Cleanup MANIFEST --- diff --git a/MANIFEST.in b/MANIFEST.in index 8ecf4745..30f41537 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,23 +1,24 @@ include MANIFEST.in README.txt INSTALL.txt CHANGES.txt ToDo.txt USAGE.txt include CHANGES_pyrex.txt COPYING.txt LICENSE.txt Makefile recursive-include .hg * +include .hgignore .hgtags include setup.py -include bin/cython +include bin/cython bin/update_references include cython.py include Cython/Compiler/Lexicon.pickle include Doc/* + include Demos/*.pyx include Demos/*.pxd -include Demos/callback/*.pyx -include Demos/callback/*.pxd +include Demos/*.py +include Demos/callback/* +include Demos/embed/* include Demos/Setup.py include Demos/Makefile* include Tools/* recursive-include Includes * -recursive-include tests *.pyx *.pxd *.pxi *.h +recursive-include tests *.pyx *.pxd *.pxi *.h *.BROKEN include runtests.py -include Cython/Compiler/Builtin.py include Cython/Mac/Makefile include Cython/Mac/_Filemodule_patched.c -include Cython/Unix/*.py diff --git a/setup.py b/setup.py index 1d6cb486..93793e3e 100644 --- a/setup.py +++ b/setup.py @@ -89,7 +89,11 @@ setup( 'Cython.Compiler', 'Cython.Distutils', 'Cython.Mac', - 'Cython.Plex' + 'Cython.Unix', + 'Cython.Plex', + + 'Cython.Tests', + 'Cython.Compiler.Tests', ], **setup_args )