Re: [Tutor] distutils MANIFEST.in

2009-06-17 Thread spir
Le Wed, 17 Jun 2009 12:51:09 -0500, Chris Fuller s'exprima ainsi: > > Use os.path.walk or similar to build the file before you call setup(). > > Cheers Thanks, that's what I thought I would end up doing... Denis -- la vita e estrany ___ Tutor ma

Re: [Tutor] distutils MANIFEST.in

2009-06-17 Thread Chris Fuller
Use os.path.walk or similar to build the file before you call setup(). Cheers ___ Tutor maillist - Tutor@python.org http://mail.python.org/mailman/listinfo/tutor

Re: [Tutor] distutils MANIFEST.in

2009-06-17 Thread spir
No one has a clue about this? Le Tue, 16 Jun 2009 22:59:24 +0200, spir s'exprima ainsi: > Hello, > > a question for people who know how to write MANIFEST.in: > How to tell to simply include all files in the package (and subdirs)? I > tried: > > recursive-include *.* > ==> warning: sdist: MANIF

[Tutor] distutils MANIFEST.in

2009-06-16 Thread spir
Hello, a question for people who know how to write MANIFEST.in: How to tell to simply include all files in the package (and subdirs)? I tried: recursive-include *.* ==> warning: sdist: MANIFEST.in, line 1: 'recursive-include' expects ... recursive-include . *.* ==> warning: no files found ma