-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
67 lines (63 loc) · 2.25 KB
/
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
from distutils.core import setup
def get_version():
with open("docs/VERSION") as f:
version = f.readline()
return version[:-1]
setup(
name="python3-wifi",
version=get_version(),
author="Manuel McLure",
author_email="[email protected]",
description="""Python3 WiFi is a Python 3 compatible fork of Python WiFi, a Python module that provides read and write access to a
wireless network card's capabilities using the Linux Wireless Extensions.""",
url="https://github.com/ManuelMcLure/python3wifi",
packages=["python3wifi"],
data_files=[
("", ["README"]),
("examples", ["examples/iwlist.py", "examples/iwconfig.py"]),
(
"docs",
[
"docs/AUTHORS",
"docs/BUGS",
"docs/LICENSE.GPL",
"docs/LICENSE.LGPL",
"docs/NEWS",
"docs/ROADMAP",
"docs/TODO",
"docs/VERSION",
"docs/ChangeLog",
"docs/DEVEL.txt",
"docs/feature_matrix_iwconfig.py.txt",
"docs/feature_matrix_iwlist.py.txt",
"docs/feature_matrix_wireless_extensions.txt",
],
),
(
"docs/logos",
[
"docs/logos/pythonwifi-logo.svg",
"docs/logos/pythonwifi-logo-16x16.png",
"docs/logos/pythonwifi-logo-64x64.png",
"docs/logos/pythonwifi-logo-text.png",
"docs/logos/pythonwifi-logo.karbon",
],
),
("man/man8", ["docs/iwconfig.py.8", "docs/iwlist.py.8"]),
],
platforms="Linux",
license="LGPL for module; GPL for example apps",
keywords="wifi wireless wlan iwconfig iwlist iwtools",
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License (GPL)",
"License :: OSI Approved :: Lesser General Public License (LGPL)",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Topic :: System :: Networking",
],
python_requires=">=3.7,<4.0",
)