-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
92 lines (79 loc) · 3.49 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
"""
##################################################################################
Copyright 2022 Jean-Francois Auger <[email protected]>
This file is part of lora-survey-heatmap, also known as lora-survey-heatmap.
lora-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.
lora-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 lora-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/nechry/lora-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:
Jean-Francois Auger <[email protected]> <http://spie.ch>
##################################################################################
"""
# read the contents of your README file
from pathlib import Path
from setuptools import find_packages, setup
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
requires = [
'matplotlib==3.3.0',
'scipy==1.5.2',
'libnl3==0.3.0',
]
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 :: 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='lora_survey_heatmap',
version='1.0.0',
author='Jean-Francois Auger',
author_email='[email protected]',
packages=find_packages(),
url='',
description='A Python application to display LoRa survey data in a heatmap.',
long_description=long_description,
install_requires=requires,
setup_requires=['cffi>=1.0.0'],
keywords="lora survey rssi heatmap",
classifiers=classifiers,
entry_points={
'console_scripts': [
'lora-heatmap = lora_survey_heatmap.heatmap:main',
'lora-heatmap-thresholds = lora_survey_heatmap.thresholds:main'
]
},
zip_safe=False
)