Metadata-Version: 2.1
Name: pravda
Version: 0.0.0
Summary: Python type-checker written in Rust
Home-page: https://github.com/wemake.services/pravda
License: MIT
Requires-Python: >=3.6,<4.0
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Project-URL: Repository, https://github.com/wemake.services/pravda
Description-Content-Type: text/markdown

# pravda

[![Build Status](https://github.com/wemake.services/pravda/workflows/test/badge.svg?branch=master&event=push)](https://github.com/wemake.services/pravda/actions?query=workflow%3Atest)
[![codecov](https://codecov.io/gh/wemake.services/pravda/branch/master/graph/badge.svg)](https://codecov.io/gh/wemake.services/pravda)
[![Python Version](https://img.shields.io/pypi/pyversions/pravda.svg)](https://pypi.org/project/pravda/)
[![wemake-python-styleguide](https://img.shields.io/badge/style-wemake-000000.svg)](https://github.com/wemake-services/wemake-python-styleguide)

Python type-checker written in Rust


## Features

- Fully typed with annotations and checked with mypy, [PEP561 compatible](https://www.python.org/dev/peps/pep-0561/)
- Add yours!


## Installation

```bash
pip install pravda
```


## Example

Showcase how your project can be used:

```python
from pravda.example import some_function

print(some_function(3, 4))
# => 7
```

## License

[MIT](https://github.com/wemake.services/pravda/blob/master/LICENSE)


## Credits

This project was generated with [`wemake-python-package`](https://github.com/wemake-services/wemake-python-package). Current template version is: [5d436d64f7d0a9b3a506d130e3a5669c409061b5](https://github.com/wemake-services/wemake-python-package/tree/5d436d64f7d0a9b3a506d130e3a5669c409061b5). See what is [updated](https://github.com/wemake-services/wemake-python-package/compare/5d436d64f7d0a9b3a506d130e3a5669c409061b5...master) since then.

