aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/command/egg_info.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2014-12-13 14:59:23 -0500
committerJason R. Coombs <jaraco@jaraco.com>2014-12-13 14:59:23 -0500
commit9a010cff9c654b4224721111eed0a27bb5ce726a (patch)
tree9319830e3ea160d1e6dc891f881298c1be59a989 /setuptools/command/egg_info.py
parent9538ade5e17240ee19377d3f0d7567a31275ac38 (diff)
downloadexternal_python_setuptools-9a010cff9c654b4224721111eed0a27bb5ce726a.tar.gz
external_python_setuptools-9a010cff9c654b4224721111eed0a27bb5ce726a.tar.bz2
external_python_setuptools-9a010cff9c654b4224721111eed0a27bb5ce726a.zip
Edit docstring for imperative form
Diffstat (limited to 'setuptools/command/egg_info.py')
-rwxr-xr-xsetuptools/command/egg_info.py11
1 files changed, 6 insertions, 5 deletions
diff --git a/setuptools/command/egg_info.py b/setuptools/command/egg_info.py
index 302d6874..cbc30ff8 100755
--- a/setuptools/command/egg_info.py
+++ b/setuptools/command/egg_info.py
@@ -330,12 +330,13 @@ class manifest_maker(sdist):
self.filelist.include_pattern("*", prefix=ei_cmd.egg_info)
def _add_egg_info(self, cmd):
- """Add paths for egg-info files for an external egg-base.
+ """
+ Add paths for egg-info files for an external egg-base.
- The egg-info files are written to egg-base. If egg-base is
- outside the current working directory, we need a separate step
- (this method) to search the egg-base directory when creating
- the manifest. We use distutils.filelist.findall (which is
+ The egg-info files are written to egg-base. If egg-base is
+ outside the current working directory, this method
+ searchs the egg-base directory for files to include
+ in the manifest. Uses distutils.filelist.findall (which is
really the version monkeypatched in by setuptools/__init__.py)
to perform the search.