Added pydoc text to the fko python module. Minot tweak to setup.py.

git-svn-id: file:///home/mbr/svn/fwknop/trunk@304 510a4753-2344-4c79-9c09-4d669213fbeb
This commit is contained in:
Damien Stuart
2010-12-04 04:12:17 +00:00
parent b6bf1d28bf
commit 4e5326660c
2 changed files with 368 additions and 29 deletions

View File

@@ -1,4 +1,4 @@
#
#!/usr/bin/python
##############################################################################
#
# File: setup.py
@@ -11,7 +11,9 @@
#
from distutils.core import setup, Extension
module1 = Extension(
# The fko extension module.
#
fko_ext = Extension(
'_fko',
define_macros = [('MAJOR_VERSION', '1'), ('MINOR_VERSION', '0')],
libraries = ['fko'],
@@ -29,6 +31,8 @@ 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 = [fko_ext],
py_modules = ['fko']
)
###EOF###