Metadata-Version: 2.1
Name: mp-common-pkg
Version: 0.0.3
Summary: A common repository, for MP System
Home-page: https://github.com/aaronmack/MP-common
Author: Aaron Li
Author-email: lilong999000@gmail.com
License: MIT
Keywords: COMMON,FUNCTIONS
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: crypto

## MP (Meta Possibility)

* This is a common repository, for MP

## Construction

```bash
# build
python3 setup.py sdist bdist_wheel
# -> or
python3 setup.py sdist

# check 
pip install twine
twine check dist/*

# register
https://pypi.org/account/register/

# E-mail validation
Validation your email

# upload
twine upload dist/*

# install 
pip install mp-common-pkg

# using
import common_pkg.common as cpc
file_path = r""
cpc.compute_md5(file_path)

# upgrade 
pip install mp-common-pkg --upgrade
```

## Problems

* error: invalid command 'bdist_wheel'

```bash
pip install wheel
```

