You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hostap/wpaspy/setup.py

23 lines
840 B
Python

#!/usr/bin/python
#
# Python bindings for wpa_ctrl (wpa_supplicant/hostapd control interface)
# Copyright (c) 2013, Jouni Malinen <j@w1.fi>
#
# This software may be distributed under the terms of the BSD license.
# See README for more details.
from distutils.core import setup, Extension
ext = Extension(name = 'wpaspy',
sources = ['../src/common/wpa_ctrl.c',
'../src/utils/os_unix.c',
'wpaspy.c'],
extra_compile_args = ["-I../src/common",
"-I../src/utils",
"-DCONFIG_CTRL_IFACE",
"-DCONFIG_CTRL_IFACE_UNIX"])
setup(name = 'wpaspy',
ext_modules = [ext],
description = 'Python bindings for wpa_ctrl (wpa_supplicant/hostapd)')