Metadata-Version: 2.4
Name: qaiko
Version: 0.1.2
Summary: A simple example package
Author-email: Amol Deshmukh <amoldeshmukh@gmail.com>
License: MIT
Project-URL: Homepage, https://github.com/des137/qaiko
Project-URL: Repository, https://github.com/des137/qaiko
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENCE
License-File: LICENSE
Provides-Extra: dev
Requires-Dist: pytest>=7.0; extra == "dev"
Requires-Dist: ruff>=0.1.0; extra == "dev"
Dynamic: license-file

# Qaiko

An example package to demonstrate PyPI uploads.

## Installation
```bash
pip install qaiko
```

## Usage
```python
from qaiko import greet

print(greet("Python"))
```

Or from the command line:
```bash
qaiko                  # Hello, World!
qaiko --name Alice     # Hello, Alice!
qaiko --version        # Show version
```

## Development
```bash
pip install -e ".[dev]"
pytest                 # Run tests
ruff check src/        # Lint code
```
