Metadata-Version: 2.4
Name: soigia-init
Version: 0.1.1
Summary: Experimental pip package — used to learn the publish workflow end-to-end
Author-email: Soi Gia <sojgja@gmail.com>
License-Expression: BSD-3-Clause
Keywords: soigia,experiment,pip
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
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
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# soigia-init

An **experimental** pip package — built to learn the publish workflow
end-to-end (scaffold → build → check → upload → install). Zero dependencies.

## Install

```bash
pip install soigia-init
```

## Usage

```bash
soigia-init --name SoiGia
# Hello, SoiGia! 👋 from soigia-init
```

Or from Python:

```python
import soigia_init
from soigia_init.cli import hello

print(soigia_init.__version__)   # 0.1.0
print(hello("Soi Gia"))
```

## Development

```bash
make test          # run tests
make build         # build wheel + sdist
make check         # twine check
make publish       # test + bump + build + upload to PyPI (one command)
```
