This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author cjw296
Recipients cjw296, tarek
Date 2009-09-11.14:28:27
SpamBayes Score 1.412707e-07
Marked as misclassified No
Message-id <1252679308.98.0.343140927716.issue6884@psf.upfronthosting.co.za>
In-reply-to
Content
With a simple setup.py:

from distutils.core import setup
setup(name='packagename')

And a MANIFEST.in containing:

include buildout.cfg 

The result of a debug run of python setup.py sdist on Windows is:

Distribution.parse_config_files():
options (after parsing config files):
no commands known yet
options (after parsing command line):
option dict for 'sdist' command:
  {}
running sdist
Distribution.get_command_obj(): creating 'sdist' command object
warning: sdist: missing required meta-data: version, url
warning: sdist: missing meta-data: either (author and author_email) or 
(maintainer and maintainer_email) mus
t be supplied
checking if setup.py newer than MANIFEST
warning: sdist: standard file not found: should have one of README, 
README.txt
reading manifest template 'MANIFEST.in'
include buildout.cfg
include_pattern: applying regex r'^buildout\.cfg$'
 adding buildout.cfg
Distribution.get_command_obj(): creating 'build' command object
exclude_pattern: applying regex r'^build\.*'
 removing buildout.cfg

...

The regex built is incorrect, although it is apparently correctly built 
on other platforms...
History
Date User Action Args
2009-09-11 14:28:29cjw296setrecipients: + cjw296, tarek
2009-09-11 14:28:28cjw296setmessageid: <1252679308.98.0.343140927716.issue6884@psf.upfronthosting.co.za>
2009-09-11 14:28:27cjw296linkissue6884 messages
2009-09-11 14:28:27cjw296create