Metadata-Version: 2.4
Name: thangdemo
Version: 0.1.0
Summary: A tiny example Python library with a CLI
Author-email: YOUR NAME <you@example.com>
License: MIT
Project-URL: Homepage, https://github.com/YOUR_GITHUB_USERNAME/thangdemo
Project-URL: Issues, https://github.com/YOUR_GITHUB_USERNAME/thangdemo/issues
Keywords: demo,example,library
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

# thangdemo

A tiny example Python library for demonstration. Provides a couple of utility functions and a CLI.

## Installation

```bash
pip install thangdemo
```

## Usage

```python
from thangdemo import add, mean

print(add(2, 3))    # 5
print(mean([1, 2])) # 1.5
```

### CLI

```bash
thangdemo-cli 7
# prints: 49
```

## Development

- Run tests: `pytest -q`
- Build: `python -m build`
