fixed dependency

This commit is contained in:
Michael Clemens 2022-05-20 17:32:46 +02:00
parent 210288b692
commit c54b7d4c11
4 changed files with 2 additions and 6 deletions

View File

@ -18,7 +18,6 @@ ColorSpot needs Python 3 and the following libraries:
* colored
* requests
* Telnet
* zipfile
Furthermore, you need an account at LotW for some of teh features.

View File

@ -1,6 +1,6 @@
[metadata]
name = colorspot
version = 0.1.0
version = 0.1.1
author = Michael Clemens
author_email = colorspot@qrz.is
description = A colorful CLI DX cluster client with LotW integration
@ -24,7 +24,6 @@ install_requires=
colored
requests
zipfile
telnetlib
[options.packages.find]
where = src

View File

@ -1,3 +1,3 @@
from colorspot.__main__ import ColorSpot
__version__ = '0.1.0'
__version__ = '0.1.1'

View File

@ -44,8 +44,6 @@ class ColorSpot():
def __init__(self):
"""initialize things"""
self.version = "0.1.0"
self.print_banner()
self.config = configparser.ConfigParser()