Metadata-Version: 2.2
Name: winzy-time-in-words
Version: 0.0.1
Summary: Simple program to say time in words
Author: Sukhbinder Singh
License: Apache-2.0
Project-URL: Homepage, https://github.com/sukhbinder/winzy-time-in-words
Project-URL: Changelog, https://github.com/sukhbinder/winzy-time-in-words/releases
Project-URL: Issues, https://github.com/sukhbinder/winzy-time-in-words/issues
Project-URL: CI, https://github.com/sukhbinder/winzy-time-in-words/actions
Classifier: License :: OSI Approved :: Apache Software License
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: winzy
Provides-Extra: test
Requires-Dist: pytest; extra == "test"

# winzy-time-in-words

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

Simple program to say time in words

## Installation

First [install winzy](https://github.com/sukhbinder/winzy) by typing

```bash
pip install winzy
```

Then install this plugin in the same environment as your winzy application.
```bash
winzy install winzy-time-in-words
```
## Usage

To get help type ``winzy time --help``

![winzy time](https://raw.githubusercontent.com/sukhbinder/winzy-time-in-words/e3aeb3a757f344a7c712809a99bcaca20997ec32/example-usage.gif)

## Development

To set up this plugin locally, first checkout the code. Then create a new virtual environment:
```bash
cd winzy-time-in-words
python -m venv venv
source venv/bin/activate
```
Now install the dependencies and test dependencies:
```bash
pip install -e '.[test]'
```
To run the tests:
```bash
python -m pytest
```
