Minor comment and documentation tweaks. Add the python directory which contains my first cut at a libfko Python wrapper module.
git-svn-id: file:///home/mbr/svn/fwknop/trunk@302 510a4753-2344-4c79-9c09-4d669213fbeb
This commit is contained in:
33
python/setup.py
Normal file
33
python/setup.py
Normal file
@@ -0,0 +1,33 @@
|
||||
#
|
||||
##############################################################################
|
||||
#
|
||||
# File: setup.py
|
||||
#
|
||||
# Author: Damien S. Stuart <dstuart@dstuart.org>
|
||||
#
|
||||
# Purpose: Driver script for the fko module.
|
||||
#
|
||||
##############################################################################
|
||||
#
|
||||
from distutils.core import setup, Extension
|
||||
|
||||
module1 = Extension(
|
||||
'fko',
|
||||
define_macros = [('MAJOR_VERSION', '1'), ('MINOR_VERSION', '0')],
|
||||
libraries = ['fko'],
|
||||
sources = ['fkomodule.c']
|
||||
)
|
||||
|
||||
setup (
|
||||
name = 'fko',
|
||||
version = '1.0',
|
||||
description = 'Wrapper for Fwknop library (libfko)',
|
||||
author = 'Damien S. Stuart',
|
||||
author_email = 'dstuart@dstuart.org',
|
||||
license = 'GPL',
|
||||
long_description = '''
|
||||
Python module that wraps the fwknop library to provide the ability to
|
||||
generate, decode, parse, and process SPA formatted messages.
|
||||
''',
|
||||
ext_modules = [module1]
|
||||
)
|
||||
Reference in New Issue
Block a user