Metadata-Version: 2.1
Name: kmtm
Version: 0.1.2
Summary: Simple tool to convert kilometers/miles.
Home-page: https://github.com/jmaslanko/kmtm
Author: Jeremy Maslanko
Author-email: maslankoj@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Description-Content-Type: text/markdown
License-File: LICENSE

# kmtm
A simple CLI tool to convert kilometers to miles so that I don't have to look up the 
conversion each time I see someone post about cycling/running stats.

## Installation
```
pip install kmtkm
```

## Usage

Example:
```
kmtm 10 -k
```

For this example, 10 is the distance that you would like to convert, and `-k` represents the unit you would like the distance converted to.  In this situation, 10 miles will be converted to kilometers.

The NUMBER is a required argument and both `-k` and `-m` are options that can be used individuall or at the same time.


### kmtm --help
```
Options:
  -k, --kilos  Kilometers is the desired output. Assumes miles is given.
  -m, --miles  Miles is the desired output. Assumes kilometers is given.
  --help       Show this message and exit.
  ```



