Metadata-Version: 2.1
Name: gada-pyrunner
Version: 0.1a0
Summary: Python runner for gada
Home-page: https://github.com/gadalang/gada-pyrunner
Author: Jeremy Morosi
Author-email: jeremymorosi@hotmail.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/gadalang/gada-pyrunner/issues
Project-URL: Source Code, https://github.com/gadalang/gada-pyrunner/
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: gada

# gada-pyrunner

![PyPI - Python Version](https://img.shields.io/pypi/pyversions/gada-pyrunner)
[![Python package](https://img.shields.io/github/workflow/status/gadalang/gada-pyrunner/Python%20package)](https://github.com/gadalang/gada-pyrunner/actions/workflows/python-package.yml)
[![Codecov](https://img.shields.io/codecov/c/gh/gadalang/gada-pyrunner?token=4CSJTL1ZML)](https://codecov.io/gh/gadalang/gada-pyrunner)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
[![contributions welcome](https://img.shields.io/badge/contributions-welcome-brightgreen.svg?style=flat)](https://github.com/gadalang/gada-pyrunner/issues)

Python runner for [gada](https://github.com/gadalang/gada).

## Install

Using pip:

```bash
pip install gada-pyrunner
```

## Testing

The `test` directory contains many tests that you can run with:

```python
python setup.py test
```

Or with coverage:

```python
coverage run --source=gada_pyrunner setup.py test
```


