@@ -77,24 +77,24 @@ The project layout can be like the following:
77
77
78
78
### Include or exclude files
79
79
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
81
81
specifying the ` includes ` and ` excludes ` settings.
82
82
83
83
``` toml
84
84
[tool .pdm .build ]
85
85
includes = [" mypackage/" , " script.py" ]
86
86
```
87
87
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.
89
89
However, the build scripts are required by a source distribution to build the package, and you don't want them to be installed.
90
90
In this case, use the ` source-includes ` setting instead:
91
91
92
92
``` toml
93
93
[tool .pdm .build ]
94
94
source-includes = [" scripts/" , " tests/" ]
95
95
```
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 .
98
98
99
99
Similarly, the ` excludes ` config also accepts a list of relative paths or glob patterns, and the matched files will not be packaged
100
100
in to the distribution.
@@ -188,10 +188,10 @@ If neither `includes` and `excludes` is specified, the backend can determine the
188
188
189
189
- If top-level packages are found under ` package-dir ` , they will be included, together with any data files inside.
190
190
- 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 .
192
192
193
193
!!! 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.
195
195
` *.pyc ` , ` __pycache__/ ` and ` build/ ` are always excluded.
196
196
197
197
0 commit comments