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',