diff options
author | Nikolaus Waxweiler <madigens@gmail.com> | 2018-10-28 11:02:13 +0000 |
---|---|---|
committer | Nikolaus Waxweiler <madigens@gmail.com> | 2018-10-28 11:02:13 +0000 |
commit | 009e0a92b463d444e48c17a3a636fc7c477dec71 (patch) | |
tree | 52b007b33be93ccd32666895b96ebd7b52b6f369 /docs | |
parent | 7d129e6ba46ee01c25d6e6b463ec7df29e624670 (diff) | |
download | external_python_setuptools-009e0a92b463d444e48c17a3a636fc7c477dec71.tar.gz external_python_setuptools-009e0a92b463d444e48c17a3a636fc7c477dec71.tar.bz2 external_python_setuptools-009e0a92b463d444e48c17a3a636fc7c477dec71.zip |
Edit wording
Diffstat (limited to 'docs')
-rw-r--r-- | docs/setuptools.txt | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/docs/setuptools.txt b/docs/setuptools.txt index f3a5f4ff..ae8a2eb7 100644 --- a/docs/setuptools.txt +++ b/docs/setuptools.txt @@ -2400,10 +2400,11 @@ Metadata and options are set in the config sections of the same name. * Unknown keys are ignored. -Using a ``src/`` layout (storing packages in a subdirectory) -============================================================ +Using a ``src/`` layout +======================= -If you use a ``src/`` layout, as in, you package structure looks like this:: +One commonly used package configuration has all the module source code in a +subdirectory (often called the ``src/`` layout), like this:: ├── src │ └── mypackage @@ -2412,7 +2413,7 @@ If you use a ``src/`` layout, as in, you package structure looks like this:: ├── setup.py └── setup.cfg -You can set up your ``setup.cfg`` to automatically look up all your packages in +You can set up your ``setup.cfg`` to automatically find all your packages in the subdirectory like this: .. code-block:: ini |