Metadata-Version: 2.1
Name: databind.mypy
Version: 0.0.3
Summary: MyPy plugin for the "databind" module.
Home-page: https://github.com/NiklasRosenstein/python-databind
Author: Niklas Rosenstein
Author-email: rosensteinniklas@gmail.com
License: MIT
Platform: UNKNOWN
Requires-Python: >=3.6.0,<4.0.0
Description-Content-Type: text/markdown
Requires-Dist: mypy (<1.0.0,>=0.800.0)

# databind.mypy

MyPy plugin for static type validation when using the `databind.core` package.

__Todo__

* [ ] Assignments using `field()` on `@datamodel`s is not yet recognized as valid by Mypy
* [ ] PR Mypy to make `mypy.plugins.dataclasses` customizable for this use case

## Getting started

Install the `databind.mypy` package from PyPI and register it as a MyPy plugin.

```ini
# mypy.ini
[mypy]
plugins = databind.mypy
```

---

<p align="center">Copyright &copy; 2020 Niklas Rosenstein</p>


