[Python-checkins] CVS: distutils/doc/dist dist.tex,1.7,1.8

Greg Ward python-dev@python.org
Wed, 19 Apr 2000 18:48:13 -0400 (EDT)


Update of /projects/cvsroot/distutils/doc/dist
In directory kaluha:/tmp/cvs-serv13429/dist

Modified Files:
	dist.tex 
Log Message:
Reformatted wide paragraphs.

Index: dist.tex
===================================================================
RCS file: /projects/cvsroot/distutils/doc/dist/dist.tex,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -r1.7 -r1.8
*** dist.tex	2000/04/19 22:36:24	1.7
--- dist.tex	2000/04/19 22:48:09	1.8
***************
*** 10,15 ****
  
  
- 
- 
  \begin{document}
  
--- 10,13 ----
***************
*** 200,207 ****
  distributing, and installing modules using the Distutils.  The main
  purpose of the setup script is to describe your module distribution to
! the Distutils, so that the various commands that operate on your modules 
  do the right thing.  As we saw in section~\ref{sec:simple-example}
! above, the setup script consists mainly of a call to \function{setup()}, and 
! all information supplied to the Distutils is suppled as keyword
  arguments to \function{setup()}.
  
--- 198,205 ----
  distributing, and installing modules using the Distutils.  The main
  purpose of the setup script is to describe your module distribution to
! the Distutils, so that the various commands that operate on your modules
  do the right thing.  As we saw in section~\ref{sec:simple-example}
! above, the setup script consists mainly of a call to \function{setup()},
! and all information supplied to the Distutils is suppled as keyword
  arguments to \function{setup()}.
  
***************
*** 306,315 ****
  \end{verbatim}
  This describes two modules, one of them in the ``root'' package, the
! other in the \module{pkg} package.  Again, the default
! package/directory layout implies that these two modules can be found in
! \file{mod1.py} and \file{pkg/mod2.py}, and that \file{pkg/\_\_init\_\_.py}
! exists as well.  And again, you can override the package/directory
! layout using the \option{package\_dir} option.  \XXX{not sure if this is
!   actually true---must check!}
  
  
--- 304,313 ----
  \end{verbatim}
  This describes two modules, one of them in the ``root'' package, the
! other in the \module{pkg} package.  Again, the default package/directory
! layout implies that these two modules can be found in \file{mod1.py} and
! \file{pkg/mod2.py}, and that \file{pkg/\_\_init\_\_.py} exists as well.
! And again, you can override the package/directory layout using the
! \option{package\_dir} option.  \XXX{not sure if this is actually
!   true---must check!}
  
  
***************
*** 357,362 ****
    \lineii{Windows}{zip file}  
  \end{tableii}
! You can specify as many formats as you like using the \longprogramopt{formats} 
! option, for example:
  \begin{verbatim}
  python setup.py sdist --formats=gztar,zip
--- 355,360 ----
    \lineii{Windows}{zip file}  
  \end{tableii}
! You can specify as many formats as you like using the
! \longprogramopt{formats} option, for example:
  \begin{verbatim}
  python setup.py sdist --formats=gztar,zip
***************
*** 490,496 ****
  
  If you don't want to use the default file set, you can supply the
! \longprogramopt{no-defaults} option.  If you use \longprogramopt{no-defaults} and
! don't supply a manifest template (or it's empty, or nothing matches the
! patterns in it), then your source distribution will be empty.
  
  
--- 488,495 ----
  
  If you don't want to use the default file set, you can supply the
! \longprogramopt{no-defaults} option.  If you use
! \longprogramopt{no-defaults} and don't supply a manifest template (or
! it's empty, or nothing matches the patterns in it), then your source
! distribution will be empty.
  
  
***************
*** 548,554 ****
  \XXX{filenames are inaccurate here!}
  
! The \command{bdist} command has a \longprogramopt{format} option, similar to
! the \command{sdist} command, that you can use to select which formats to
! generate: for example,
  \begin{verbatim}
  python setup.py bdist --format=zip
--- 547,553 ----
  \XXX{filenames are inaccurate here!}
  
! The \command{bdist} command has a \longprogramopt{format} option,
! similar to the \command{sdist} command, that you can use to select which
! formats to generate: for example,
  \begin{verbatim}
  python setup.py bdist --format=zip
***************
*** 581,586 ****
  
  You don't have to use the \command{bdist} command with the
! \longprogramopt{formats} option; you can also use the command that directly
! implements the format you're interested in.  Many of these
  \command{bdist} ``sub-commands'' actually generate several similar
  formats; for instance, the \command{bdist\_dumb} command generates all
--- 580,585 ----
  
  You don't have to use the \command{bdist} command with the
! \longprogramopt{formats} option; you can also use the command that
! directly implements the format you're interested in.  Many of these
  \command{bdist} ``sub-commands'' actually generate several similar
  formats; for instance, the \command{bdist\_dumb} command generates all
***************
*** 677,682 ****
  
  
! \subsection{Creating a ``built'' distribution: the \protect\command{bdist} command
!   family}
  \label{sec:bdist-cmds}
  
--- 676,681 ----
  
  
! \subsection{Creating a ``built'' distribution: the
!   \protect\command{bdist} command family}
  \label{sec:bdist-cmds}