Metadata-Version: 2.1
Name: zeushell
Version: 1.0.1
Summary: A small Python package published to PyPI
Author-email: Zeus <zeus@gmail.com>
License: MIT
Keywords: example,package,pypi
Requires-Python: >=3.8
Description-Content-Type: text/markdown

﻿# zeushell

A simple interactive action-shell framework.  
Write functions — run them as shell commands.

## Features

- Function-based command system
- Interactive shell runtime
- Customizable shell prompt
- Safe function registry
## Install

```bash
pip install zeushell
```

## Quick Start

```python
import zeushell
zeushell.start()
@zeushell.function()
def hi(user):
    return "Hello "+user

zeushell.name("zeushell")
zeushell.run()
```

Shell:

```
zeushell: hi Tom
hi Tom
```

## License

MIT
