FIX: 1.17.1
diff --git a/MANIFEST.in b/MANIFEST.in
index 1071c82..e467a2b 100644
--- a/MANIFEST.in
+++ b/MANIFEST.in
@@ -1,5 +1,11 @@
 include codespell_lib/__init__.py
 recursive-include codespell_lib *.py
-include codespell_lib/data/dictionary.txt
+include codespell_lib/data/dictionary*.txt
 include codespell_lib/data/linux-kernel.exclude
 include COPYING
+include bin/codespell
+exclude *.yml *.yaml
+exclude .coveragerc
+exclude example example/* snap snap/* tools tools/*
+exclude Makefile
+exclude codespell.1.include
diff --git a/Makefile b/Makefile
index 9b26724..2313231 100644
--- a/Makefile
+++ b/Makefile
@@ -39,6 +39,9 @@
 		sed -E -i.bak -e 's/^[[:space:]]+//; s/[[:space:]]+$$//; /^$$/d' $$dictionary && rm $$dictionary.bak; \
 	done
 
+check-manifest:
+	check-manifest
+
 pypi:
 	python setup.py sdist register upload
 
diff --git a/codespell_lib/_codespell.py b/codespell_lib/_codespell.py
index cc12ad6..9eb7f8a 100755
--- a/codespell_lib/_codespell.py
+++ b/codespell_lib/_codespell.py
@@ -31,7 +31,7 @@
 USAGE = """
 \t%prog [OPTIONS] [file1 file2 ... fileN]
 """
-VERSION = '1.17.0'
+VERSION = '1.17.1'
 
 # Users might want to link this file into /usr/local/bin, so we resolve the
 # symbolic link path to the real path if necessary.