Metadata-Version: 2.1
Name: pymetronome
Version: 0.1.0
Summary: A simple metronome utility
Home-page: https://github.com/spyoungtech/pymetronome
Author: Spencer Phillip Young
Author-email: spencer.young@spyoung.com
License: MIT
Platform: UNKNOWN
Description-Content-Type: text/markdown

# PyMetronome

A simple metronome utility.

## Installation 

```
pip install pymetronome
```

## Usage

After installing the `met` command is available

```
usage: met [-h] [--bpm BPM] [--meter METER]

optional arguments:
  -h, --help     show this help message and exit
  --bpm BPM      Beats per minute
  --meter METER  The time signature to use (e.g. "4/4")
```

Alternatively, you can also use `python -m met`

## Notes

Currently, this is only supported on Windows (because it relies on the standard library `winsound` module)

