-
Notifications
You must be signed in to change notification settings - Fork 89
/
Copy pathsetup.py
99 lines (87 loc) · 3.89 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
"""
The latest version of this package is available at:
<http://github.com/jantman/wifi-survey-heatmap>
##################################################################################
Copyright 2017 Jason Antman <[email protected]> <http://www.jasonantman.com>
This file is part of wifi-survey-heatmap, also known as wifi-survey-heatmap.
wifi-survey-heatmap is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
wifi-survey-heatmap is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with wifi-survey-heatmap. If not, see <http://www.gnu.org/licenses/>.
The Copyright and Authors attributions contained herein may not be removed or
otherwise altered, except to add the Author attribution of a contributor to
this work. (Additional Terms pursuant to Section 7b of the AGPL v3)
##################################################################################
While not legally required, I sincerely request that anyone who finds
bugs please submit them at <https://github.com/jantman/wifi-survey-heatmap> or
to me via email, and that you send any contributions or improvements
either as a pull request on GitHub, or to me via email.
##################################################################################
AUTHORS:
Jason Antman <[email protected]> <http://www.jasonantman.com>
##################################################################################
"""
from setuptools import setup, find_packages
from wifi_survey_heatmap.version import VERSION, PROJECT_URL
with open('README.rst') as file:
long_description = file.read()
requires = [
'iperf3==0.1.11',
'matplotlib==3.5.2',
'scipy==1.8.1',
'libnl3==0.3.0',
'pypubsub==4.0.3',
]
classifiers = [
'Development Status :: 1 - Planning',
'Environment :: X11 Applications :: GTK',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU Affero General Public License '
'v3 or later (AGPLv3+)',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: System :: Networking'
]
setup(
name='wifi-survey-heatmap',
version=VERSION,
author='Jason Antman',
author_email='[email protected]',
packages=find_packages(),
url=PROJECT_URL,
description='A Python application for Linux machines to perform WiFi site'
' surveys and present the results as a heatmap overlayed on '
'a floorplan.',
long_description=long_description,
install_requires=requires,
setup_requires=['cffi>=1.0.0'],
keywords="wifi wireless wlan survey map heatmap",
classifiers=classifiers,
entry_points={
'console_scripts': [
'wifi-scan = wifi_survey_heatmap.scancli:main',
'wifi-survey = wifi_survey_heatmap.ui:main',
'wifi-heatmap = wifi_survey_heatmap.heatmap:main',
'wifi-heatmap-thresholds = wifi_survey_heatmap.thresholds:main'
]
},
zip_safe=False
)