Metadata-Version: 2.1
Name: op-cli
Version: 0.0.1
Summary: A Simple command line
Home-page: https://gitlab.com/oyetoketoby80/elias-cli.git
Author: Oyetoke Toby
Author-email: oyetoketoby80@gmail.com
License: MIT
Download-URL: https://gitlab.com/oyetoketoby80/elias-cli.git
Platform: UNKNOWN
Requires-Python: >=2.7
Description-Content-Type: text/markdown
Requires-Dist: autodiscover (==0.0.3)
Requires-Dist: autopep8 (==1.4.4)
Requires-Dist: backcall (==0.1.0)
Requires-Dist: certifi (==2019.9.11)
Requires-Dist: chardet (==3.0.4)
Requires-Dist: Click (==7.0)
Requires-Dist: decorator (==4.4.1)
Requires-Dist: idna (==2.8)
Requires-Dist: jedi (==0.15.1)
Requires-Dist: op-cli (==0.0.1)
Requires-Dist: parso (==0.5.1)
Requires-Dist: pexpect (==4.7.0)
Requires-Dist: pickleshare (==0.7.5)
Requires-Dist: prompt-toolkit (==3.0.2)
Requires-Dist: ptyprocess (==0.6.0)
Requires-Dist: pycodestyle (==2.5.0)
Requires-Dist: Pygments (==2.4.2)
Requires-Dist: requests (==2.22.0)
Requires-Dist: six (==1.13.0)
Requires-Dist: traitlets (==4.3.3)
Requires-Dist: urllib3 (==1.25.7)
Requires-Dist: wcwidth (==0.1.7)

====
CLI
====

See all commands
----------------

```bash

$ python main.py commands

```

# Run commands

```bash

$ python main.py run "add(4,minus(4,5))"

```

# Add function

1. Create a python file in `functions` directory
2. Add the main functon entry
3. Import `from .app import app`
4. Add the `@app.register()` to the function


