Skip to content

Commit 131ca39

Browse files
committed
Added Python 2 and Python 3 categories for pypi.
1 parent 8e55f41 commit 131ca39

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

pyscrypt/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,6 @@
3535
from .file import InvalidScryptFileFormat, ScryptFile
3636
from .hash import hash
3737

38-
VERSION = [1, 6, 1]
38+
VERSION = [1, 6, 2]
3939

4040
__all__ = ['hash', 'InvalidScryptFileFormat', 'ScryptFile']

setup.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
reference and details.'''
99

1010
setup(name = 'pyscrypt',
11-
version = '1.6.1',
11+
version = '1.6.2',
1212
description = 'Pure-Python Implementation of the scrypt password-based key derivation function and scrypt file format library',
1313
long_description = LONG_DESCRIPTION,
1414
author = 'Richard Moore',
@@ -18,6 +18,9 @@
1818
classifiers = [
1919
'Topic :: Security :: Cryptography',
2020
'License :: OSI Approved :: MIT License',
21+
'Programming Language :: Python',
22+
'Programming Language :: Python :: 2',
23+
'Programming Language :: Python :: 3',
2124
],
2225
license = "License :: OSI Approved :: MIT License",
2326
)

0 commit comments

Comments
 (0)