8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f958d66 + b2a13ae commit c5d802bCopy full SHA for c5d802b
MANIFEST.in
@@ -1,5 +1,11 @@
1
# stuff we need to include into the sdist is handled automatically by
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
+# but we want only the main source code and exclude everything else
+# 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
8
prune .github
9
+prune docs
10
+prune examples
11
+prune tests
0 commit comments