Skip to content

Commit

Permalink
Include/exclude support recurive patterns
Browse files Browse the repository at this point in the history
Change the documentation as include/exclude config args already support recursive patterns and the docs says the opposite.
  • Loading branch information
joshlk authored and tttapa committed Dec 10, 2024
1 parent b2f0da7 commit 1d2c4ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/Config.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ Specifies the files that should be included in the source distribution for this

| Option | Description | Type | Default |
|--------|-------------|------|---------|
| `include` | Files and folders to include in the source distribution. May include the '\*' wildcard (but not '\*\*' for recursive patterns). | list | `[]` |
| `exclude` | Files and folders to exclude from the source distribution. May include the '\*' wildcard (but not '\*\*' for recursive patterns). | list | `[]` |
| `include` | Files and folders to include in the source distribution. May include the '\*' wildcard or '\*\*' for recursive patterns. | list | `[]` |
| `exclude` | Files and folders to exclude from the source distribution. May include the '\*' wildcard or '\*\*' for recursive patterns. | list | `[]` |

## cmake
Defines how to build the project to package. If omitted, py-build-cmake will produce a pure Python package.
Expand Down

0 comments on commit 1d2c4ff

Please sign in to comment.