File tree
Expand file treeCollapse file tree1 file changed
+8
-2
lines changed Expand file treeCollapse file tree1 file changed
+8
-2
lines changed Original file line number | Diff line number | Diff line change |
---|
|
1 | 1 | # stuff we need to include into the sdist is handled automatically by
|
2 | 2 | # setuptools_scm - it includes all git-committed files.
|
3 |
| -# but we want to exclude some committed files/dirs not needed in the sdist: |
4 |
| -exclude .gitattributes .gitignore |
| 3 | +# but we want only the main source code and exclude everything else |
| 4 | +# to not waste space on the esp32 |
| 5 | +# (upip packages are not installable by pip on a PC, so on a PC one |
| 6 | +# would git clone anyway and get all the other files) |
| 7 | +exclude * # exclude all files in repo root |
5 | 8 | prune .
|
| 9 | +prune docs |
| 10 | +prune examples |
| 11 | +prune tests |
You can’t perform that action at this time.
0 commit comments