From eddf3e82d22944c022e4e48d214f08c95ddae5a9 Mon Sep 17 00:00:00 2001 From: Tom Cocagne Date: Wed, 30 Mar 2011 23:10:32 -0400 Subject: prepping for 1.0 release --- README.txt | 15 ++++++++------- setup.py | 14 ++++++++++++-- 2 files changed, 20 insertions(+), 9 deletions(-) diff --git a/README.txt b/README.txt index 6ce8f37..83cee01 100644 --- a/README.txt +++ b/README.txt @@ -1,11 +1,12 @@ -This package provides a Python Implementation of the Secure Remote Password -Protocol. It consists of 3 modules: A pure Python implementation, A ctypes -+ OpenSSL implementation, and a C extension module. The ctypes/extension -modules are approximately 10x faster than the pure Python implementation -and can take advantage of multiple CPUs. The ctypes/extension module will -be used if available, otherwise the library will fall back to the pure -Python implementation. +This package provides a Python Implementation of the Secure Remote +Password Protocol. It consists of 3 modules: A pure Python +implementation, A ctypes + OpenSSL implementation, and a C extension +module. The ctypes & extension modules are approximately 10-20x faster +than the pure Python implementation and can take advantage of multiple +CPUs. The extension module will be used if available, otherwise the +library will fall back to the ctypes implementation followed by the +pure Python implementation. Installation: diff --git a/setup.py b/setup.py index 0973908..dc32ff2 100755 --- a/setup.py +++ b/setup.py @@ -8,9 +8,19 @@ py_modules = ['_pysrp', '_ctsrp', 'srp'] ext_modules = [ Extension('_srp', ['_srp.c',], libraries = ['ssl',]), ] setup(name = 'srp', - version = '0.9', + version = '1.0', description = 'Secure Remote Password Protocol', author = 'Tom Cocagne', author_email = 'tom.cocagne@gmail.com', + url = 'http://code.google.com/p/pysrp/', py_modules = py_modules, - ext_modules = ext_modules) \ No newline at end of file + ext_modules = ext_modules, + classifiers=[ + 'Development Status :: 5 - Production/Stable', + 'Intended Audience :: Developers', + 'License :: OSI Approved :: BSD License', + 'Operating System :: OS Independent', + 'Programming Language :: Python', + 'Programming Language :: C', + 'Topic :: Security', + ],) -- cgit v1.2.3