Metadata-Version: 2.1
Name: opstrich
Version: 0.2.1
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.8,<4.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.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Software Development
Requires-Dist: black (>=20.8b1,<21.0)
Requires-Dist: invoke (>=1.4.1,<2.0.0)
Requires-Dist: isort (>=5.6.4,<6.0.0)
Requires-Dist: pyupgrade (>=2.7.4,<3.0.0)
Project-URL: Repository, https://github.com/RevolutionTech/opstrich
Description-Content-Type: text/markdown

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

[![Build Status](https://travis-ci.com/RevolutionTech/opstrich.svg?branch=main)](https://travis-ci.com/RevolutionTech/opstrich)

## 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`.

