From a0c1de25f923c0ab907bf08c79f687dd6b260b2c Mon Sep 17 00:00:00 2001 From: Matthieu Darbois Date: Mon, 3 Jan 2022 22:02:10 +0100 Subject: [PATCH] fix: building from a github archive fails (#361) setuptools_scm includes some files by default that are not included when building from a github archive. Include them manually to produce the same build. --- MANIFEST.in | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/MANIFEST.in b/MANIFEST.in index 3f68bf6b..e0963b9a 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,8 +1,12 @@ include README.rst include LICENSE +include CHANGELOG.md +include src/auditwheel/policy/*.json +include src/auditwheel/_vendor/wheel/LICENSE.txt exclude .coveragerc exclude .gitignore +exclude .git-blame-ignore-revs exclude .pre-commit-config.yaml exclude .travis.yml exclude noxfile.py