Skip to content

Commit

Permalink
Added Python 2 and Python 3 categories for pypi.
Browse files Browse the repository at this point in the history
  • Loading branch information
ricmoo committed Feb 3, 2015
1 parent 8e55f41 commit 131ca39
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyscrypt/__init__.py
Expand Up @@ -35,6 +35,6 @@
from .file import InvalidScryptFileFormat, ScryptFile
from .hash import hash

VERSION = [1, 6, 1]
VERSION = [1, 6, 2]

__all__ = ['hash', 'InvalidScryptFileFormat', 'ScryptFile']
5 changes: 4 additions & 1 deletion setup.py
Expand Up @@ -8,7 +8,7 @@
reference and details.'''

setup(name = 'pyscrypt',
version = '1.6.1',
version = '1.6.2',
description = 'Pure-Python Implementation of the scrypt password-based key derivation function and scrypt file format library',
long_description = LONG_DESCRIPTION,
author = 'Richard Moore',
Expand All @@ -18,6 +18,9 @@
classifiers = [
'Topic :: Security :: Cryptography',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
license = "License :: OSI Approved :: MIT License",
)

0 comments on commit 131ca39

Please sign in to comment.