From 8bfdeea984697e803dcc4973900a077c5ec30632 Mon Sep 17 00:00:00 2001 From: Mark McLoughlin Date: Thu, 20 Jun 2013 10:18:00 +0100 Subject: [PATCH] Include HACKING.rst in MANIFEST.in Without this, I'm seeing: Running setup.py egg_info for package from file:///.../hacking-0.5.5.6.ga6bef44.zip error in setup command: Error parsing ../setup.cfg: IOError: 2 This is a "file not found" when it tries to open HACKING.rst. Not sure whether something changed recently to cause this to start happening. Change-Id: I499332181c83a7bb127261efd6354ae4d92f5709 (cherry picked from commit 7c4421e470f53bea90a08ea5cb4273b6b43806a5) --- MANIFEST.in | 1 + 1 file changed, 1 insertion(+) diff --git a/MANIFEST.in b/MANIFEST.in index 0aceb71..96acc57 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,6 +1,7 @@ include AUTHORS include ChangeLog include README.rst +include HACKING.rst include requirements.txt include test-requirements.txt exclude .gitignore