Metadata-Version: 2.1
Name: pytrun
Version: 1.2.1
Summary: Python Yaml Task RUNner.
Home-page: https://github.com/marco-souza/pythun
Author: Marco Antônio
Author-email: ma.souza.junior@gmail.com
License: UNKNOWN
Keywords: python yaml task runner
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: Programming Language :: Python :: 3.6
Description-Content-Type: text/markdown
Requires-Dist: pyyaml
Provides-Extra: dev
Requires-Dist: twine; extra == 'dev'
Requires-Dist: rope; extra == 'dev'
Requires-Dist: pylint; extra == 'dev'
Requires-Dist: pytest; extra == 'dev'
Requires-Dist: flake8; extra == 'dev'
Requires-Dist: pycodestyle; extra == 'dev'
Provides-Extra: test

# Python Yaml Task RUNner (pytrun).

Simple tool to run tasks defined in a Yaml file.

## Usage

First of all you need to create a `tasks.yaml` or `tasks.yml` to define which tasks should run.

```yaml
setup:
    - pip install -e .[dev]


build:
  - python setup.py sdist

```

```bash
pytrun setup build
```

Also you can specify another file to pytrun:

```sh
pytrun setup build -c ./my-tasks.yml
```


