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 * colored
* requests * requests
* Telnet
* zipfile * zipfile
Furthermore, you need an account at LotW for some of teh features. Furthermore, you need an account at LotW for some of teh features.

View File

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

View File

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

View File

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