diff --git a/README.md b/README.md index ea31e8e..454e739 100644 --- a/README.md +++ b/README.md @@ -7,8 +7,10 @@ Duitku API Library for Python ## Supported Feature | Feature | Function | HTTP Request | Description | |------------------------|--------------------------------------|-----------------------------------------------|---------------------------------------| -| Get Payment Method | client.payment.get_methods | POST /merchant/paymentmethod/getpaymentmethod | Get list of available payment methods | -| Craete New Invoice | client.invoice.create | POST /merchant/createInvoice | Create Transaction via POP API | +| Get Payment Method | duitku.payment.get_methods | POST /merchant/paymentmethod/getpaymentmethod | Get list of available payment methods | +| Craete New Invoice | duitku.invoice.create | POST /merchant/createInvoice | Create Transaction via POP API | +| Create New Transaction | duitku.transaction.create | POST /merchant/v2/inquiry | Create Transaction via V2 API | +| Get Transaction | duitku.transaction.get_status | POST /merchant/transactionStatus | Get Transaction via V2 API | ## Requirements - Python 3.5 or later diff --git a/pyproject.toml b/pyproject.toml index ae27f09..7f49c43 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "duitku-python" -version = "0.2.3" +version = "0.2.4" authors = [ {name = "Ido Yudhatama", email = "idowidya.yudhatama@gmail.com"}, ] diff --git a/setup.py b/setup.py index c73cd9c..5b6ff10 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ setup( name="duitku", - version="0.2.3", + version="0.2.4", description="Duitku Python SDK", long_description=long_description, url="https://github.com/idoyudha/duitku-python",