mirror of
https://github.com/gryf/wicd.git
synced 2025-12-19 12:28:08 +01:00
- Add 3rd party python libraries used by ioctl backend to tree and to setup.py - Port several bug fixes from the trunk (removing reliance on shell for running external commands, unicode fixes, gui crash fixes, authentication validation improvements, several others) - Fix some crashes in ioctl backend. - Change daemon/GUI launch scripts to use the -O flag.
16 lines
405 B
Python
16 lines
405 B
Python
#!/usr/bin/python
|
|
|
|
'''Setup script for the iwscan extension.'''
|
|
|
|
import distutils
|
|
from distutils.core import setup
|
|
from distutils.extension import Extension
|
|
|
|
ext = Extension(name = 'iwscan',
|
|
libraries = ['iw'],
|
|
sources = ['pyiwscan.c'])
|
|
|
|
setup(name = 'iwscan',
|
|
description = 'Python bindings for wireless scanning via iwlib',
|
|
ext_modules = [ext])
|