Metadata-Version: 2.2
Name: phemacast
Version: 0.0.1
Summary: Bootstrap package for the future Phemacast release.
License: MIT
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Python: >=3.10
Description-Content-Type: text/markdown

# phemacast

`phemacast` is a tiny bootstrap package that reserves the project name on PyPI
while the fuller Phemacast release is being prepared.

It includes:

- a small importable Python API
- a simple CLI entry point
- basic project metadata for future iteration

## Install

```bash
python -m pip install phemacast
```

## Quickstart

```python
from phemacast import describe, hello

print(describe())
print(hello("developer"))
```

## CLI

```bash
phemacast
phemacast --name developer
phemacast --json
```

