diff options
author | PJ Eby <distutils-sig@python.org> | 2005-11-18 03:45:16 +0000 |
---|---|---|
committer | PJ Eby <distutils-sig@python.org> | 2005-11-18 03:45:16 +0000 |
commit | f3694a0388e4e15d9cbdd84e4c8ca7817c87a52c (patch) | |
tree | d72ca4fc258a4c7730758d84bc26fcf2a36a5a28 /setuptools/command/egg_info.py | |
parent | 873ebe91a8de43df836c873d9106e5af31c302e4 (diff) | |
download | external_python_setuptools-f3694a0388e4e15d9cbdd84e4c8ca7817c87a52c.tar.gz external_python_setuptools-f3694a0388e4e15d9cbdd84e4c8ca7817c87a52c.tar.bz2 external_python_setuptools-f3694a0388e4e15d9cbdd84e4c8ca7817c87a52c.zip |
The ``sdist`` command no longer uses the traditional ``MANIFEST`` file to
create source distributions. ``MANIFEST.in`` is still read and processed,
as are the standard defaults and pruning. But the manifest is built inside
the project's ``.egg-info`` directory as ``SOURCES.txt``, and it is rebuilt
every time the ``egg_info`` command is run.
--HG--
branch : setuptools
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041472
Diffstat (limited to 'setuptools/command/egg_info.py')
-rwxr-xr-x | setuptools/command/egg_info.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/setuptools/command/egg_info.py b/setuptools/command/egg_info.py index 2375eb96..3f17c041 100755 --- a/setuptools/command/egg_info.py +++ b/setuptools/command/egg_info.py @@ -246,7 +246,8 @@ class manifest_maker(sdist): def add_defaults(self): sdist.add_defaults(self) - self.filelist.extend([self.template,self.manifest]) + self.filelist.append(self.template) + self.filelist.append(self.manifest) rcfiles = list(walk_revctrl()) if rcfiles: self.filelist.extend(rcfiles) @@ -284,7 +285,6 @@ class manifest_maker(sdist): - def write_pkg_info(cmd, basename, filename): log.info("writing %s", filename) if not cmd.dry_run: |