From 39fe54427deddfb11dea6209496b5bcdcaaadd05 Mon Sep 17 00:00:00 2001 From: "Tom Cocagne (vubuntu)" Date: Mon, 30 Aug 2010 23:37:47 -0400 Subject: initial commit --- setup.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 setup.py (limited to 'setup.py') diff --git a/setup.py b/setup.py new file mode 100755 index 0000000..0973908 --- /dev/null +++ b/setup.py @@ -0,0 +1,16 @@ +#!/usr/bin/env python + +from distutils.core import setup +from distutils.extension import Extension + +py_modules = ['_pysrp', '_ctsrp', 'srp'] + +ext_modules = [ Extension('_srp', ['_srp.c',], libraries = ['ssl',]), ] + +setup(name = 'srp', + version = '0.9', + description = 'Secure Remote Password Protocol', + author = 'Tom Cocagne', + author_email = 'tom.cocagne@gmail.com', + py_modules = py_modules, + ext_modules = ext_modules) \ No newline at end of file -- cgit v1.2.3