]> git.ipfire.org Git - thirdparty/hostap.git/blame - wpaspy/setup.py
EAP: Increase the maximum number of message exchanges
[thirdparty/hostap.git] / wpaspy / setup.py
CommitLineData
20da5c89
JM
1#!/usr/bin/python
2#
3# Python bindings for wpa_ctrl (wpa_supplicant/hostapd control interface)
4# Copyright (c) 2013, Jouni Malinen <j@w1.fi>
5#
6# This software may be distributed under the terms of the BSD license.
7# See README for more details.
8
9from distutils.core import setup, Extension
10
11ext = Extension(name = 'wpaspy',
12 sources = ['../src/common/wpa_ctrl.c',
13 '../src/utils/os_unix.c',
14 'wpaspy.c'],
15 extra_compile_args = ["-I../src/common",
16 "-I../src/utils",
17 "-DCONFIG_CTRL_IFACE",
18 "-DCONFIG_CTRL_IFACE_UNIX"])
19
20setup(name = 'wpaspy',
21 ext_modules = [ext],
22 description = 'Python bindings for wpa_ctrl (wpa_supplicant/hostapd)')