Metadata-Version: 2.1
Name: typecmd
Version: 1.0.1
Summary: Command toolset used in my work
Author: telesoho
Author-email: telesoho@gmail.com
Requires-Python: >=3.8,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: pipx (>=1.2.0,<2.0.0)
Requires-Dist: python-dateutil (>=2.8.2,<3.0.0)
Requires-Dist: pyyaml (>=6.0,<7.0)
Requires-Dist: typer[all] (>=0.7.0,<0.8.0)
Description-Content-Type: text/markdown

This is a command tootset used in my work.

## System requirements

[install poetry](https://python-poetry.org/docs/#installation)

## How to install

```sh
pipx install typecmd
```

## How to use

After installed, you can use command directory in this toolset.

For example:

```
yaml2json --help
```

## How to build

clone source

```sh
git clone https://github.com/telesoho/typecmd.git
```

```sh
cd typecmd
poetry install
poetry build
```

Active shell

```sh
poetry shell
```

use pipx to install the cli commands.

```sh
pipx install dist/typecmd-<version>.tar.gz
```

Now you can use `typecmd`.

```sh
typecmd --help
```

