diff --git a/kibom/debug.py b/kibom/debug.py index 24f6ab5..6769787 100644 --- a/kibom/debug.py +++ b/kibom/debug.py @@ -3,7 +3,6 @@ from __future__ import print_function import sys -from colorama import Fore # Various msg levels MSG_MESSAGE = -1 # Display generic message (always displayed) @@ -54,7 +53,7 @@ def message(*arg): Display a message """ - _msg(Fore.WHITE, "", *arg) + _msg(*arg) def debug(*arg): @@ -66,7 +65,7 @@ def debug(*arg): if MSG_LEVEL < MSG_DEBUG: return - _msg(Fore.LIGHTCYAN_EX, MSG_CODES[MSG_DEBUG], *arg) + _msg(MSG_CODES[MSG_DEBUG], *arg) def info(*arg): @@ -78,7 +77,7 @@ def info(*arg): if MSG_LEVEL < MSG_INFO: return - _msg(Fore.WHITE, MSG_CODES[MSG_INFO], *arg) + _msg(MSG_CODES[MSG_INFO], *arg) def warning(*arg): @@ -90,7 +89,7 @@ def warning(*arg): if MSG_LEVEL < MSG_WARN: return - _msg(Fore.YELLOW, MSG_CODES[MSG_WARN], *arg) + _msg(MSG_CODES[MSG_WARN], *arg) def error(*arg, **kwargs): @@ -104,7 +103,7 @@ def error(*arg, **kwargs): if MSG_LEVEL < MSG_ERROR: return - _msg(Fore.RED, MSG_CODES[MSG_ERROR], *arg) + _msg(MSG_CODES[MSG_ERROR], *arg) ERR_COUNT += 1 diff --git a/setup.py b/setup.py index 0635d7c..f82f400 100644 --- a/setup.py +++ b/setup.py @@ -4,8 +4,8 @@ from kibom.version import KIBOM_VERSION -with open("README.md", "r") as readme: - long_description = readme.read() +long_description = "KiBoM is a configurable BOM (Bill of Materials) generation tool for KiCad EDA. Written in Python, it can be used directly with KiCad software without the need for any external libraries or plugins. KiBoM intelligently groups components based on multiple factors, and can generate BoM files in multiple output formats. For futher information see the KiBom project page" + setuptools.setup( name="kibom", @@ -20,8 +20,6 @@ long_description=long_description, - long_description_content_type="text/markdown", - keywords="kicad, bom, electronics, schematic, bill of materials", url="https://github.com/SchrodingersGat/KiBom", @@ -32,7 +30,6 @@ install_requires=[ "xlsxwriter", - "colorama", ], python_requires=">=2.7"