Commit 53d0d31
refactor: Simplify glob patterns in pyproject.toml
Simplify package-data wildcards from redundant patterns to cleaner syntax:
- "www/**/*" → "www/**"
- "templates/**/*" → "templates/**"
- "api-examples/**/*" → "api-examples/**"
The `**` glob pattern already matches all files and subdirectories
recursively, making the `/*` suffix redundant.
Verified that the wheel still:
- Includes 662 www/templates files
- Excludes all api-examples files
- Maintains same 3.6MB size
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <[email protected]>1 parent b6197f4 commit 53d0d31
1 file changed
+2
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
9 | 9 | | |
10 | 10 | | |
11 | 11 | | |
12 | | - | |
| 12 | + | |
13 | 13 | | |
14 | 14 | | |
15 | | - | |
| 15 | + | |
16 | 16 | | |
17 | 17 | | |
18 | 18 | | |
| |||
0 commit comments