Metadata-Version: 2.1
Name: mypy2junit
Version: 1.0.2
Summary: Script for converting output from MyPy to Junit XML format
Home-page: https://github.com/Dundee/mypy2junit
Author: Daniel Milde
Author-email: daniel@milde.cz
License: BSD-3-Clause
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.5
Description-Content-Type: text/markdown
Provides-Extra: dev
Requires-Dist: pytest ; extra == 'dev'

# MyPy2Junit

Script for converting output from MyPy to Junit XML format

## Usage

```
mypy somedir | mypy2junit > junit.xml
```

or:

```
mypy > output.txt
mypy2junit output.txt > junit.xml
```

## Installation

```
pip install mypy2junit
```


