Metadata-Version: 2.4
Name: kittten
Version: 0.1.0
Summary: A small example package for learning Python package development.
Author-email: Chandan Kumar <chandanbarada2@gmail.com>
Project-URL: Homepage, https://github.com/yourusername/kittten
Project-URL: Bug Tracker, https://github.com/yourusername/kittten/issues
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: LICENSE
Dynamic: license-file

# Kittten

This is an example Python package created for learning how to develop and publish Python packages.

## Installation

```bash
pip install kittten
```

## Usage

```python
from kittten import purr

print(purr())
# Output: purrrr!
```
