Metadata-Version: 2.4
Name: testmodule
Version: 0.1.0
Summary: A small demo module with a friendly greeting.
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Provides-Extra: dev
Requires-Dist: pytest>=7; extra == "dev"

# demo-module

A small demo package that exposes a single public function:

```python
from demo_module import hello

print(hello("World"))
```

## Development

Create a virtual environment, then install in editable mode:

```bash
pip install -e ".[dev]"
pytest
```
