Metadata-Version: 2.1
Name: meepy
Version: 0.0.4
Summary: A diagnostics package for when print statemets are not adequate
Home-page: https://github.com/peledies/meepy
Author: Deac Karns
Author-email: deac@hashsalt.net
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# Meep Morp

>meep morp clink clank

## Examples
---

### Import
```python
from meepy import Meep
```

### Meep morp the current line number
```python
Meep.morp()
```

### Meep morp with a custom message
```python
Meep.morp(message='a custom message')
```

### Meep morp with the method path and line
```python
from meepy import Meep

class Example:
    def test():
        Meep.morp(self)
        # or
        Meep.morp(parent=self)
```


