Skip to content

Commit

Permalink
Updated for pypi to include all files in git.
Browse files Browse the repository at this point in the history
  • Loading branch information
ricmoo committed May 5, 2014
1 parent 16f1517 commit 6965886
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions MANIFEST.in
@@ -0,0 +1,4 @@
include README.md
include LICENSE.txt
include tests/run-tests.py

2 changes: 1 addition & 1 deletion pyscrypt/__init__.py
Expand Up @@ -34,6 +34,6 @@

from pyscrypt.hash import hash

VERSION = [1, 1]
VERSION = [1, 1, 1]

__all__ = ['hash']
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -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',
Expand Down

0 comments on commit 6965886

Please sign in to comment.