From c54b7d4c1191a12ec0d0bacecdcd07c2d518ba69 Mon Sep 17 00:00:00 2001 From: Michael Clemens Date: Fri, 20 May 2022 17:32:46 +0200 Subject: [PATCH] fixed dependency --- README.md | 1 - setup.cfg | 3 +-- src/colorspot/__init__.py | 2 +- src/colorspot/__main__.py | 2 -- 4 files changed, 2 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 7e7483d..003c988 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/setup.cfg b/setup.cfg index caf3985..66fd331 100644 --- a/setup.cfg +++ b/setup.cfg @@ -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 diff --git a/src/colorspot/__init__.py b/src/colorspot/__init__.py index f533f99..833913f 100644 --- a/src/colorspot/__init__.py +++ b/src/colorspot/__init__.py @@ -1,3 +1,3 @@ from colorspot.__main__ import ColorSpot -__version__ = '0.1.0' +__version__ = '0.1.1' diff --git a/src/colorspot/__main__.py b/src/colorspot/__main__.py index b10d788..9850a0c 100755 --- a/src/colorspot/__main__.py +++ b/src/colorspot/__main__.py @@ -44,8 +44,6 @@ class ColorSpot(): def __init__(self): """initialize things""" - self.version = "0.1.0" - self.print_banner() self.config = configparser.ConfigParser()