From 6965886b3536b80127770a24af40a97b2d7fd325 Mon Sep 17 00:00:00 2001 From: Richard Moore Date: Sun, 4 May 2014 23:32:11 -0400 Subject: [PATCH] Updated for pypi to include all files in git. --- MANIFEST.in | 4 ++++ pyscrypt/__init__.py | 2 +- setup.py | 4 ++-- 3 files changed, 7 insertions(+), 3 deletions(-) create mode 100644 MANIFEST.in diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..bca32b1 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,4 @@ +include README.md +include LICENSE.txt +include tests/run-tests.py + diff --git a/pyscrypt/__init__.py b/pyscrypt/__init__.py index 81835ed..dccd6f1 100644 --- a/pyscrypt/__init__.py +++ b/pyscrypt/__init__.py @@ -34,6 +34,6 @@ from pyscrypt.hash import hash -VERSION = [1, 1] +VERSION = [1, 1, 1] __all__ = ['hash'] diff --git a/setup.py b/setup.py index b192c14..5dd6ebb 100644 --- a/setup.py +++ b/setup.py @@ -4,10 +4,10 @@ LONG_DESCRIPTION = '''A very simple, pure-Python implementation of the scrypt password-based key derivation function with no dependencies beyond standard -Python libraries.''' +Python libraries. See README.md for API reference and details.''' setup(name = 'pyscrypt', - version = '1.1', + version = '1.1.1', description = 'Pure-Python Implementation of the scrypt password-based key derivation function', long_description = LONG_DESCRIPTION, author = 'Richard Moore',