Changeset 391 for python/trunk/Doc/distutils/commandref.rst
- Timestamp:
- Mar 19, 2014, 11:31:01 PM (11 years ago)
- Location:
- python/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
python/trunk
-
Property svn:mergeinfo
set to
/python/vendor/Python-2.7.6 merged eligible /python/vendor/current merged eligible
-
Property svn:mergeinfo
set to
-
python/trunk/Doc/distutils/commandref.rst
r2 r391 49 49 50 50 51 .. _sdist-cmd:52 53 Creating a source distribution: the :command:`sdist` command54 ============================================================55 56 **\*\*** fragment moved down from above: needs context! **\*\***57 58 The manifest template commands are:59 60 +-------------------------------------------+-----------------------------------------------+61 | Command | Description |62 +===========================================+===============================================+63 | :command:`include pat1 pat2 ...` | include all files matching any of the listed |64 | | patterns |65 +-------------------------------------------+-----------------------------------------------+66 | :command:`exclude pat1 pat2 ...` | exclude all files matching any of the listed |67 | | patterns |68 +-------------------------------------------+-----------------------------------------------+69 | :command:`recursive-include dir pat1 pat2 | include all files under *dir* matching any of |70 | ...` | the listed patterns |71 +-------------------------------------------+-----------------------------------------------+72 | :command:`recursive-exclude dir pat1 pat2 | exclude all files under *dir* matching any of |73 | ...` | the listed patterns |74 +-------------------------------------------+-----------------------------------------------+75 | :command:`global-include pat1 pat2 ...` | include all files anywhere in the source tree |76 | | matching --- & any of the listed patterns |77 +-------------------------------------------+-----------------------------------------------+78 | :command:`global-exclude pat1 pat2 ...` | exclude all files anywhere in the source tree |79 | | matching --- & any of the listed patterns |80 +-------------------------------------------+-----------------------------------------------+81 | :command:`prune dir` | exclude all files under *dir* |82 +-------------------------------------------+-----------------------------------------------+83 | :command:`graft dir` | include all files under *dir* |84 +-------------------------------------------+-----------------------------------------------+85 86 The patterns here are Unix-style "glob" patterns: ``*`` matches any sequence of87 regular filename characters, ``?`` matches any single regular filename88 character, and ``[range]`` matches any of the characters in *range* (e.g.,89 ``a-z``, ``a-zA-Z``, ``a-f0-9_.``). The definition of "regular filename90 character" is platform-specific: on Unix it is anything except slash; on Windows91 anything except backslash or colon.92 93 **\*\*** Windows support not there yet **\*\***94 95 51 .. % \section{Creating a built distribution: the 96 52 .. % \protect\command{bdist} command family}
Note:
See TracChangeset
for help on using the changeset viewer.