Metadata-Version: 2.4
Name: pypi-sample-message
Version: 0.1.0
Summary: A sample PyPI package that prints a message.
License-Expression: MIT
Keywords: sample,pypi,demo
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# pypi-sample-message

A tiny sample Python package that only prints a message.

## Install

```sh
python3 -m pip install pypi-sample-message
```

## Use

Run the console command:

```sh
pypi-sample-message
```

Or call it from Python:

```python
from pypi_sample_message import get_message

print(get_message())
```
