Metadata-Version: 2.3
Name: joythief
Version: 0.1.0
Summary: Comparison is the thief of joy
License: ISC
Author: Jonathan Sharpe
Author-email: mail@jonrshar.pe
Requires-Python: >=3.9
Classifier: License :: OSI Approved
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Description-Content-Type: text/markdown

# JoyThief

Comparison is the thief of joy.

## Usage

JoyThief provides a collection of matchers which can be used for testing.

```python
from joythief.numbers import NaN


def test_my_func_with_no_arguments_returns_nan():
    assert my_func() == NaN()
```

