Metadata-Version: 2.1
Name: opstrich
Version: 0.6.0
Summary: DevOps tooling, various scripts, etc.
Home-page: https://github.com/RevolutionTech/opstrich
License: ISC
Author: Lucas Connors
Author-email: lucas@revolutiontech.ca
Requires-Python: >=3.6.1,<4.0.0
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Software Development
Requires-Dist: black (==20.8b1)
Requires-Dist: invoke (>=1.4.1,<2.0.0)
Requires-Dist: isort (==5.8.0)
Requires-Dist: pyupgrade (==2.11.0)
Project-URL: Repository, https://github.com/RevolutionTech/opstrich
Description-Content-Type: text/markdown

# Opstrich
#### DevOps tooling, various scripts, etc.

![CI](https://github.com/RevolutionTech/opstrich/actions/workflows/ci.yml/badge.svg)

## Installation

First install the `opstrich` package:

    pip install opstrich

To use the provided [invoke](http://www.pyinvoke.org/) tasks, you will also need to add these to a collection in your project:

    # tasks.py

    from invoke import Collection
    from opstrich.invoke import check, openssl, package

    namespace = Collection(check, openssl, package)

## Usage

Once the invoke tasks have been added, you can view help information on them via `inv -l` and `inv --help`.

