Files
fwknop/python/setup.py
Michael Rash bfdbb8f260 Updated authorship and copyright information
This commit updates all authorship and copyright information to include a
standard header that references the AUTHORS and CREDITS file. This standard
header was written by the Debian legal team at the request of Franck Joncourt.
2014-03-04 17:53:10 -05:00

43 lines
1.2 KiB
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/usr/bin/python
##############################################################################
#
# File: setup.py
#
# Purpose: Driver script for the fko module.
#
# Fwknop is developed primarily by the people listed in the file 'AUTHORS'.
# Copyright (C) 20092014 fwknop developers and contributors. For a full
# list of contributors, see the file 'CREDITS'.
#
##############################################################################
#
from distutils.core import setup, Extension
# The fko extension module.
#
fko_ext = Extension(
'_fko',
define_macros = [('MAJOR_VERSION', '1'), ('MINOR_VERSION', '5')],
include_dirs = ['../lib/'],
library_dirs = ['../lib/.libs'],
libraries = ['fko'],
sources = ['fkomodule.c']
)
setup (
name = 'fko',
version = '1.5',
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 = [fko_ext],
py_modules = ['fko']
)
###EOF###