qlogging icon indicating copy to clipboard operation
qlogging copied to clipboard

Installation is looking for setup

Open Mr-Ruben opened this issue 2 years ago • 1 comments

Hello,

I just did what the homepage says one should do.

import qlogging
logger = qlogging.get_logger(level='debug')

logger.debug("This is debug") 
logger.info("This is info")
logger.warning("This is warning")
logger.error("This is an error")
logger.critical("This is a critical")

and it fails with


Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/usr/local/lib/python3.7/dist-packages/qlogging/__init__.py", line 2, in <module>
    from setup import __version__
ModuleNotFoundError: No module named 'setup'

In github I can see the setup.py file, but something is not working as expected. Please forgive my ignorance.

Mr-Ruben avatar Feb 10 '22 16:02 Mr-Ruben