Metadata-Version: 2.4
Name: pypi-demo-hello-aymg
Version: 0.12.0
Summary: A simple hello world library
Author-email: Andres Monroy <andresyesidm@gmail.com>
License: MIT
Keywords: example,hello,world
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# hello-world-lib

A simple hello world library — minimal example for publishing to PyPI.

## Installation

```bash
pip install hello-world-lib
```

## Usage

```python
from hello_world_lib import hello, greet

print(hello())          # Hello, World!
print(greet("Alice"))   # Hello, Alice!
```

## Development

```bash
# Install with dev dependencies
pip install -e ".[dev]"

# Run tests
pytest
```

## Publishing

```bash
# Build
python -m build

# Upload to TestPyPI first
twine upload --repository testpypi dist/*

# Upload to PyPI
twine upload dist/*
```