Metadata-Version: 2.5
Name: ziwu
Version: 0.1.0
Summary: A hello world Python package from ZIWU-AI.
Project-URL: Homepage, https://github.com/ZIWU-AI/ziwu
Project-URL: Repository, https://github.com/ZIWU-AI/ziwu
Project-URL: Issues, https://github.com/ZIWU-AI/ziwu/issues
Author: ZIWU-AI
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# ziwu

A minimal Python package from [ZIWU-AI](https://github.com/ZIWU-AI) that prints `hello world`.

Requires Python 3.9 or newer. No runtime dependencies.

## Install

```sh
pip install ziwu
```

To install directly from this repository:

```sh
pip install git+https://github.com/ZIWU-AI/ziwu.git
```

## Run

```sh
ziwu
```

or:

```sh
python -m ziwu
```

Both commands print:

```text
hello world
```

Installing the package does not run the greeting automatically.

## Build

```sh
python -m pip install build twine
python -m build
python -m twine check --strict dist/*
```

See [RELEASING.md](https://github.com/ZIWU-AI/ziwu/blob/main/RELEASING.md) for the PyPI publishing setup.
