Metadata-Version: 2.1
Name: croudtech-ecs-tools
Version: 0.1.7
Summary: Tools for managing ECS Services and Tasks
Home-page: https://github.com/CroudTech/croudtech-ecs-tools
Author: Jim Robinson
License: Apache License, Version 2.0
Project-URL: Issues, https://github.com/CroudTech/croudtech-ecs-tools/issues
Project-URL: CI, https://github.com/CroudTech/croudtech-ecs-tools/actions
Project-URL: Changelog, https://github.com/CroudTech/croudtech-ecs-tools/releases
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: boto3 (==1.20.28)
Requires-Dist: click (==8.0.3)
Requires-Dist: jmespath (==0.10.0) ; python_version >= "2.6" and python_version not in "3.0, 3.1, 3.2, 3.3"
Requires-Dist: python-dateutil (==2.8.2) ; python_version >= "2.7" and python_version not in "3.0, 3.1, 3.2, 3.3"
Requires-Dist: six (==1.16.0) ; python_version >= "2.7" and python_version not in "3.0, 3.1, 3.2, 3.3"
Requires-Dist: urllib3 (==1.26.7) ; python_version >= "2.7" and python_version not in "3.0, 3.1, 3.2, 3.3, 3.4" and python_version < "4"
Requires-Dist: botocore (==1.23.28) ; python_version >= "3.6"
Requires-Dist: s3transfer (==0.5.0) ; python_version >= "3.6"
Provides-Extra: test
Requires-Dist: pytest ; extra == 'test'

# croudtech-ecs-tools

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

Tools for managing ECS Services and Tasks

## Installation

Install this tool using `pip`:

    $ pip install croudtech-ecs-tools

## Usage

Usage: python -m croudtech_ecs_tools.cli [OPTIONS] COMMAND [ARGS]...

  Tools for managing ECS Services and Tasks

Options:
  --version  Show the version and exit.
  --help     Show this message and exit.

Commands:
  ecs-shell
  croudtech-ecs-tools

## Development

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

    cd croudtech-ecs-tools
    python -m venv venv
    source venv/bin/activate

Or if you are using `pipenv`:

    pipenv shell

Now install the dependencies and test dependencies:

    pip install -e '.[test]'

To run the tests:

    pytest
