-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
executable file
·26 lines (23 loc) · 901 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/usr/bin/env python
try:
from setuptools import setup, Extension
except ImportError:
from distutils.core import setup, Extension
setup(name = "basiciw",
version = "0.2.2",
description = "Get wireless info of interface.",
author = "enkore",
author_email = "[email protected]",
license = "GPL",
url = "http://github.com/enkore/basiciw/",
platforms = "Linux",
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Development Status :: 3 - Alpha",
"Operating System :: POSIX :: Linux",
"Programming Language :: C",
"Programming Language :: Python",
"Topic :: System :: Networking"],
ext_modules = [
Extension("basiciw", sources=["basiciw.c"], libraries=["iw"], extra_compile_args=['-Wno-declaration-after-statement'])
])