Skip to content

Commit 64fa833

Browse files
committed
ver 0.1.1 fix some but about new setuptools
1 parent 842c6ca commit 64fa833

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

README.MD

+9-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
# MBBank API for Python
22
A unofficially light weight Python Api for the "Military Commercial Joint Stock Bank" account
33

4-
## why we have this lib ?
4+
## Why we have this lib ?
55

6-
Because I don't want to lose money on some api services like [casso.vn](https://casso.vn/)
6+
Because I don't want to lose money on some api services like [casso.vn](https://casso.vn/) or [payos.vn](https://payos.vn/)
7+
when have freemium tier but with limit :>
8+
9+
what you need that it use this lib to make your own code so you can use it free forever
710

811
## Requires
912
[tesseract (windows)](https://github.com/UB-Mannheim/tesseract/wiki)
@@ -66,4 +69,8 @@ asyncio.run(main())
6669
```
6770
and all this is return json for you have full control your data
6871

72+
## Extra Info
73+
- Payment QR Code Generator
74+
- [vietqr.io](https://vietqr.io/)
75+
6976
![Hits](https://hits.seeyoufarm.com/api/count/incr/badge.svg?url=https%3A%2F%2Fgithub.com%2Fthedtvn%2FMBBank&count_bg=%2379C83D&title_bg=%23555555&icon=python.svg&icon_color=%23E7E7E7&title=Views+Counter&edge_flat=false)

mbbank/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
from .main import MBBank
22
from .mbasync import MBBankAsync
33

4-
__version__ = '0.1.0'
4+
__version__ = '0.1.1'

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,6 @@
2020
url='https://github.com/thedtvn/MBBank',
2121
author='The DT',
2222
packages=["mbbank"],
23-
install_requires=req
23+
install_requires=req,
24+
include_package_data=True
2425
)

0 commit comments

Comments
 (0)