From f92b840eed7c80d478e6b719b3b59052d9bb6e2f Mon Sep 17 00:00:00 2001 From: Dan Callaghan Date: Jun 23 2017 00:59:04 +0000 Subject: exclude conf/settings.py from published tarballs The waiverdb-0.2.1 tarball I published accidentally included a 0-byte conf/settings.py because that file was (uncommitted) in my working tree when I built the tarball. Moreover I didn't notice because we explicitly gitignore'd that file because we *expect* everyone to have to it in their working tree. So let's ensure that the setuptools manifest won't pick it up in future. A nicer solution might be to switch to setuptools-git to ensure the tarball *never* includes random uncommitted junk in it... --- diff --git a/MANIFEST.in b/MANIFEST.in index 9dd558a..1013d57 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -9,4 +9,5 @@ include run-dev-server.py include fedmsg.d/*.py recursive-include systemd * recursive-include conf * +exclude conf/settings.py recursive-include docs *.py *.rst *.inv Makefile