Added the Fko class code to wrap the _fko wrapper around libfko.

git-svn-id: file:///home/mbr/svn/fwknop/trunk@303 510a4753-2344-4c79-9c09-4d669213fbeb
This commit is contained in:
Damien Stuart
2010-11-27 03:18:58 +00:00
parent 00bc99a966
commit b6bf1d28bf
4 changed files with 394 additions and 8 deletions
+3 -2
View File
@@ -12,7 +12,7 @@
from distutils.core import setup, Extension
module1 = Extension(
'fko',
'_fko',
define_macros = [('MAJOR_VERSION', '1'), ('MINOR_VERSION', '0')],
libraries = ['fko'],
sources = ['fkomodule.c']
@@ -29,5 +29,6 @@ setup (
Python module that wraps the fwknop library to provide the ability to
generate, decode, parse, and process SPA formatted messages.
''',
ext_modules = [module1]
ext_modules = [module1],
py_modules = ['fko']
)