summaryrefslogtreecommitdiff
path: root/setup.py
blob: dc32ff28a821d55096337dc4384fc7b621d1dce7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/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      = '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,
      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',
        ],)