Metadata-Version: 2.1
Name: formulapy
Version: 0.1.10
Summary: external tools for python to write math formula.
Home-page: https://github.com/thautwarm/formulapy
Author: thautwarm
Author-email: twshere@outlook.com
License: MIT
Keywords: formula,python,math,external tools
Platform: any
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: Implementation :: CPython
Requires-Python: >=3.6.0
Description-Content-Type: text/markdown
Requires-Dist: wisepy
Requires-Dist: Redy (>=0.2.6)


## Install

- Requires python 3.6+
```
pip install formulapy
```

## Usage

- process file : `formulapy file <filename> [--w]`

  **If `--w` is set, the file would be overwritten**.

- process text : `formulapy text <text>`

```
cmd> formulapy file test.py
from formulapy import tex

def Σ(arr):
    pass

cmd> formulapy text "tex[A,'cap',B,'cap',C]"
A∩B∩C
```



