Renamed fko_set_hmac_type to fko_set_spa_hmac_type. Incorporated libfko changes and additions to the fko python module code.

This commit is contained in:
Damien Stuart
2013-03-10 13:21:24 -04:00
parent 1a39047b92
commit 6fa3be393c
9 changed files with 631 additions and 57 deletions

View File

@@ -15,14 +15,16 @@ from distutils.core import setup, Extension
#
fko_ext = Extension(
'_fko',
define_macros = [('MAJOR_VERSION', '1'), ('MINOR_VERSION', '0')],
define_macros = [('MAJOR_VERSION', '1'), ('MINOR_VERSION', '5')],
libraries = ['fko'],
library_dirs = ['/opt/local/lib'],
include_dirs = ['/opt/local/include'],
sources = ['fkomodule.c']
)
setup (
name = 'fko',
version = '1.0',
version = '1.5',
description = 'Wrapper for Fwknop library (libfko)',
author = 'Damien S. Stuart',
author_email = 'dstuart@dstuart.org',