summaryrefslogtreecommitdiff
path: root/setup.py
blob: 09739084d31801d854e0708d76b7ad885a57a93b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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)