-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (21 loc) · 687 Bytes
/
setup.py
File metadata and controls
22 lines (21 loc) · 687 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup
setup(
name='tmo_monitor',
version='2.0.0-beta4',
description='A script to monitor the T-Mobile Home Internet 5G Gateways',
long_description='A lightweight, cross-platform Python 3 script that can monitor the T-Mobile Home Internet Arcadyan and Nokia 5G Gateways for 4G/5G bands, cellular site (tower), and internet connectivity and reboots as needed or on-demand.',
url='https://github.com/highvolt-dev/tmo-monitor',
author='highvolt-dev',
license='MIT',
packages=[
'tmo_monitor',
'tmo_monitor.gateway'
],
scripts=['bin/tmo-monitor.py'],
install_requires=[
'parse',
'python-dotenv',
'requests',
'tailer'
]
)