From a7506e9193271f8e51ffde628142c5cce7710d47 Mon Sep 17 00:00:00 2001 From: George Yoshida Date: Sun, 1 Jun 2014 13:43:46 +0900 Subject: [PATCH] Fix "warning: no files found matching 'README.md'" The path of README file is wrong, so when you run `$ pip install bcdoc`, you encounter the warning message as follows: Downloading/unpacking bcdoc>=0.12.0,<0.13.0 (from awscli) Downloading bcdoc-0.12.2.tar.gz Running setup.py (path:/tmp/pip_build_vagrant/bcdoc/setup.py) egg_info for package bcdoc warning: no files found matching 'README.md' --- MANIFEST.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MANIFEST.in b/MANIFEST.in index 0017bfe..3c61de3 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,3 +1,3 @@ -include README.md +include README.rst include LICENSE.txt include requirements.txt