Skip to content

Commit 5c6480c

Browse files
authored
doc: Clarify includes and excludes (#270)
* Clarify includes and excludes * Fixup
1 parent 7f543a7 commit 5c6480c

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

docs/build_config.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -77,24 +77,24 @@ The project layout can be like the following:
7777

7878
### Include or exclude files
7979

80-
By default, python files under the project root will be included only when there is no package found. You can change this by
80+
By default, Python files under the project root will be included only when there is no package found. You can change this by
8181
specifying the `includes` and `excludes` settings.
8282

8383
```toml
8484
[tool.pdm.build]
8585
includes = ["mypackage/", "script.py"]
8686
```
8787

88-
Note that this is uncommon because it will place both `mypackage/` and `script.py` under site-packages directory when installed.
88+
Note that this is uncommon because it will place both `mypackage/` and `script.py` under the `site-packages` directory when installed.
8989
However, the build scripts are required by a source distribution to build the package, and you don't want them to be installed.
9090
In this case, use the `source-includes` setting instead:
9191

9292
```toml
9393
[tool.pdm.build]
9494
source-includes = ["scripts/", "tests/"]
9595
```
96-
97-
The patterns in `source-includes` will be automatically excluded by the wheel distribution.
96+
By default, test files under `tests`, if found, are included by sdist and excluded by other formats.
97+
These paths can be overridden by specifying `source-includes` manually.
9898

9999
Similarly, the `excludes` config also accepts a list of relative paths or glob patterns, and the matched files will not be packaged
100100
in to the distribution.
@@ -188,10 +188,10 @@ If neither `includes` and `excludes` is specified, the backend can determine the
188188

189189
- If top-level packages are found under `package-dir`, they will be included, together with any data files inside.
190190
- Otherwise, all top-level `*.py` files under `package-dir` will be included.
191-
- Test files under `tests`, if found, are included by sdist and excluded by other formats.
191+
- See `source-includes` for further includes.
192192

193193
!!! note
194-
Specifying `includes` and `excludes` will **override** the default values, so you need to include the package directories manually.
194+
Specifying `includes` and `excludes` will **override** their default values, so you need to include the package directories manually.
195195
`*.pyc`, `__pycache__/` and `build/` are always excluded.
196196

197197

0 commit comments

Comments
 (0)