From 5bed9ac7bb8473abb790e82c4bbdf2283df1e01e Mon Sep 17 00:00:00 2001 From: Drew Hubl Date: Sat, 15 Apr 2017 03:48:11 -0600 Subject: [PATCH] Bump version for PyPI release and add a MANIFEST.in --- MANIFEST.in | 2 ++ setup.py | 6 +++++- 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 MANIFEST.in diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..ace97e6 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,2 @@ +include humanhash.py +include README.rst diff --git a/setup.py b/setup.py index aea3eb5..fcd4156 100644 --- a/setup.py +++ b/setup.py @@ -3,10 +3,14 @@ from distutils.core import setup +with open('README.rst', 'r') as f: + long_description = f.read() + setup( name='humanhash3', - version='0.0.4', + version='0.0.5', description='Human-readable representations of digests.', + long_description=long_description, author='Zachary Voase', author_email='z@zacharyvoase.com', url='https://github.com/blag/humanhash',