Metadata-Version: 2.1
Name: vedro-dev
Version: 0.2.0
Summary: Dev mode for Vedro
Home-page: https://github.com/vedro-universe/vedro-dev
Author: Nikita Tsvetkov
Author-email: tsv1@fastmail.com
License: Apache-2.0
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Typing :: Typed
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE

# Vedro Dev

[![PyPI](https://img.shields.io/pypi/v/vedro-dev.svg?style=flat-square)](https://pypi.python.org/pypi/vedro-dev/)
[![PyPI - Downloads](https://img.shields.io/pypi/dm/vedro-dev?style=flat-square)](https://pypi.python.org/pypi/vedro-dev/)
[![Python Version](https://img.shields.io/pypi/pyversions/vedro-dev.svg?style=flat-square)](https://pypi.python.org/pypi/vedro-dev/)

## Installation

### 1. Install package

```shell
$ pip3 install vedro-dev
```

### 2. Enable plugin

```python
# ./vedro.cfg.py
import vedro
import vedro_dev

class Config(vedro.Config):

    class Plugins(vedro.Config.Plugins):

        class VedroDev(vedro_dev.VedroDev):
            enabled = True

```

# Usage

```shell
$ vedro run --dev -r silent
```
