Metadata-Version: 2.1
Name: raise-module-not-found-error
Version: 1.0.0
Summary: Raises ModuleNotFoundError on import
Home-page: https://github.com/ralokt/raise-module-not-found-error/
Author: Thomas Kolar
Author-email: thomaskolar90@gmail.com
License: WTFPL
Keywords: useless
Platform: all
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Other Audience
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE.txt

# Raise Module Not Found

Raise Module Not Found is a "library" that raises a `ModuleNotFoundError` when an
attempt is made to import it.

## Example usage

```
>>> import raise_module_not_found_error
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "installation/path/raise_module_not_found_error.py", line 2, in <module>
    raise ModuleNotFoundError("Ceci n'est pas un module")
ModuleNotFoundError: Ceci n'est pas un module
```

## Running tests

Simply run `python -m unittest discover` in the project root.

## This is completely useless, isn't it?

yes
