Skip to content

Commit 6965886

Browse files
committed
Updated for pypi to include all files in git.
1 parent 16f1517 commit 6965886

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

MANIFEST.in

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
include README.md
2+
include LICENSE.txt
3+
include tests/run-tests.py
4+

pyscrypt/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,6 @@
3434

3535
from pyscrypt.hash import hash
3636

37-
VERSION = [1, 1]
37+
VERSION = [1, 1, 1]
3838

3939
__all__ = ['hash']

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44

55
LONG_DESCRIPTION = '''A very simple, pure-Python implementation of the scrypt
66
password-based key derivation function with no dependencies beyond standard
7-
Python libraries.'''
7+
Python libraries. See README.md for API reference and details.'''
88

99
setup(name = 'pyscrypt',
10-
version = '1.1',
10+
version = '1.1.1',
1111
description = 'Pure-Python Implementation of the scrypt password-based key derivation function',
1212
long_description = LONG_DESCRIPTION,
1313
author = 'Richard Moore',

0 commit comments

Comments
 (0)