From 5b6d8a0ba63572c9f1811b31111f2ff4bfd57b9f Mon Sep 17 00:00:00 2001 From: chaoqing Date: Wed, 25 May 2022 00:12:58 +0800 Subject: [PATCH] update readme; --- README.md | 11 ++++++----- setup.py | 2 +- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 8650119..dae32da 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,13 @@ # Language translator from MATLAB to Python This package provides a utility `mh_python` to translate MATLAB into Python format while keeping most of the MATLAB accent. -The generated Python code hope to be directly runnable with the [mat2py](https://mat2py.org) framework. +The generated Python code hope to be directly runnable with the [mat2py](https://mat2py.org) engine. -This `mh_python` utility was initially developed under fork of [MISS_HIT](https://github.com/florianschanda/miss_hit) and -then exported to a seperated [branch](https://github.com/mat2py/miss_hit/tree/mh_python) for uploading to [PyPi](https://pypi.org/project/mh-python/). +This `mh_python` utility was initially developed under fork of [MISS_HIT](https://github.com/florianschanda/miss_hit) +and then exported to this seperated repository for uploading to [PyPi](https://pypi.org/project/mh-python/). -We hope to merge this utility back to `miss_hit` after it is stable. +The development may still happen inside the [fork](https://github.com/mat2py/miss_hit). We hope to merge this utility +back to `miss_hit` after it is stable. ## Usage @@ -14,7 +15,7 @@ Try it online [here](https://translate.mat2py.org/). ```python # must install -python3 -m pip install mh-python +python3 -m pip install -U mh-python # recommend install for prettify generated code python3 -m pip install black isort --upgrade diff --git a/setup.py b/setup.py index d2280b1..27b6195 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setuptools.setup( name="mh_python", - version="0.0.10", + version="0.0.11", author="Chaoqing Wang", author_email="chaoqingwang.nick@gmail.com", description="Matlab to Python/Numpy translator",