From 131ca39acee4963afd704b4c4631497e4fe34c97 Mon Sep 17 00:00:00 2001 From: Richard Moore Date: Tue, 3 Feb 2015 16:43:42 -0500 Subject: [PATCH] Added Python 2 and Python 3 categories for pypi. --- pyscrypt/__init__.py | 2 +- setup.py | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/pyscrypt/__init__.py b/pyscrypt/__init__.py index cb8b1a6..e7d8472 100644 --- a/pyscrypt/__init__.py +++ b/pyscrypt/__init__.py @@ -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'] diff --git a/setup.py b/setup.py index e1535c6..745ca56 100644 --- a/setup.py +++ b/setup.py @@ -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', @@ -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", )