Metadata-Version: 2.4
Name: fcicdemo
Version: 0.1.0
Summary: The easiest demo app - says hello and tells you the time.
Author: fcic
License-Expression: MIT
Keywords: demo,hello,example
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# fcicdemo

The easiest demo app.

## Install

```bash
pip install fcicdemo
```

## Usage

Run the CLI:

```bash
$ fcicdemo
Hello, World!
Current time: 2026-08-06 12:34:56

$ fcicdemo PyPI
Hello, PyPI!
```

Or use it as a library:

```python
from fcicdemo import hello, now

print(hello("friend"))  # Hello, friend!
print(now())            # 2026-08-06 12:34:56
```
