Re: [Distutils] zc.buildout installing parts not asked for

2007-10-28 Thread Jim Fulton
On Oct 25, 2007, at 12:13 PM, TIm TerlegÄrd wrote: When using zc.buildout I discovered that it installed a part that I didn't specify in the 'parts' option. This happened because I referenced this part somewhere else. Is this how it's supposed to be? Yes. Jim -- Jim Fulton Zope

[Distutils] Distributing doc files w/ distutils src pkg?

2007-10-28 Thread Skip Montanaro
I have a simple setup.py file: #!/usr/bin/env python from distutils.core import setup setup(name='lockfile', author='Skip Montanaro', author_email='skip at pobox.com', maintainer='Skip Montanaro', maintainer_email='skip at pobox.com',

Re: [Distutils] Distributing doc files w/ distutils src pkg?

2007-10-28 Thread Tres Seaver
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Skip Montanaro wrote: I have a simple setup.py file: #!/usr/bin/env python from distutils.core import setup setup(name='lockfile', author='Skip Montanaro', author_email='skip at pobox.com',

Re: [Distutils] Distributing doc files w/ distutils src pkg?

2007-10-28 Thread Phillip J. Eby
At 02:57 PM 10/28/2007 +, Skip Montanaro wrote: I have a simple setup.py file: #!/usr/bin/env python from distutils.core import setup setup(name='lockfile', author='Skip Montanaro', author_email='skip at pobox.com', maintainer='Skip Montanaro',

Re: [Distutils] Distributing doc files w/ distutils src pkg?

2007-10-28 Thread skip
What am I missing? [from my distutils setup] Phillip A MANIFEST.in file specifying what to include. Thanks. I came up with this: include README MANIFEST lockfile.py setup.py recursive-include doc *.rst which seems to build a proper .tar.gz file. Skip

[Distutils] patch: Unused import of 'shutil'

2007-10-28 Thread Ben Finney
Howdy all, As of version 0.6c7 (and likely earlier), 'ez_setup.py' causes 'pyflakes' to emit two warnings:: $ pyflakes ./ez_setup.py ./ez_setup.py:117: 'shutil' imported but unused ./ez_setup.py:181: redefinition of unused 'main' from line 179 The latter is due to 'pyflakes' not