Metadata-Version: 2.1
Name: secrets-mgmt-cli
Version: 0.4.1
Summary: A simple CLI for managing secrets in AWS Secrets Manager
Home-page: https://github.com/william-cass-wright/secrets-mgmt-cli
Author: Will Wright
License: Apache License, Version 2.0
Project-URL: Issues, https://github.com/william-cass-wright/secrets-mgmt-cli/issues
Project-URL: CI, https://github.com/william-cass-wright/secrets-mgmt-cli/actions
Project-URL: Changelog, https://github.com/william-cass-wright/secrets-mgmt-cli/releases
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Provides-Extra: test
License-File: LICENSE

# secrets-mgmt-cli
A simple CLI for managing secrets in AWS Secrets Manager

[![PyPI](https://img.shields.io/pypi/v/secrets-mgmt-cli.svg)](https://pypi.org/project/secrets-mgmt-cli/)
[![Changelog](https://img.shields.io/github/v/release/william-cass-wright/secrets-mgmt-cli?include_prereleases&label=changelog)](https://github.com/william-cass-wright/secrets-mgmt-cli/releases)
[![Tests](https://github.com/william-cass-wright/secrets-mgmt-cli/workflows/Test/badge.svg)](https://github.com/william-cass-wright/secrets-mgmt-cli/actions?query=workflow%3ATest)
[![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://github.com/william-cass-wright/secrets-mgmt-cli/blob/master/LICENSE)

A simple CLI for managing secrets in AWS Secrets Manager

## Installation

Install this tool using `pip`:

    pip install secrets-mgmt-cli

## Usage

For help, run:

    secrets-mgmt-cli --help

You can also use:

    python -m secrets_mgmt_cli --help

## Development

To contribute to this tool, first checkout the code. Then create a new virtual environment:

    cd secrets-mgmt-cli
    python -m venv venv
    source venv/bin/activate

Now install the dependencies and test dependencies:

    pip install -e '.[test]'

To run the tests:

    pytest
