Metadata-Version: 2.1
Name: mini-util
Version: 0.1.11
Summary: A minimalistic Python util library for some daily usage
Author: Harvey Tung
Author-email: haotingtong30@gmail.com
Requires-Python: >=3.10,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: argparse (>=1.4.0,<2.0.0)
Project-URL: repository, https://github.com/i-am-harveyt/mini_util
Description-Content-Type: text/markdown

# mini\_util

## Introduction

This is a simple example that construct a PyPI package with poetry.

## Project Setup

Commands and steps:

```sh
# init project
poetry new <package-name>

cd <package-name>

# you can init your git, and do something with it here

# if ready to release
poetry version  # this will display version
poetry version 0.1.2  # this will set version to 0.1.2
poetry publish --build  # this will publish to pypi and build to `dist/`, you may need to wait around 2 mins to update

# after publish, you may just use pip install <my-package> to install
# or you can also build this using local file
poetry build  # files will store in `dist/`
pip install dist/mini_util-0.1.2-py3-none-any.whl --force-reinstall
# and you can use the cli now
```

## Cli Usage

```sh
mutil -s="Hello World"
# or
mutil --string="Hello World"

```

