From 01dd66d11ba62ca381239dd922f0c868d29465af Mon Sep 17 00:00:00 2001 From: Ido Widya Yudhatama Date: Fri, 2 May 2025 11:36:49 +0700 Subject: [PATCH 1/2] fix: find package Duitku, not duitku --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 271c332..329d956 100644 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ author="Ido Yudhatama", author_email="idowidya.yudhatama@gmail.com", keywords=["duitku", "duitku api", "duitku python"], - packages=find_packages(include=["duitku*"], exclude=["tests", "tests.*"]), + packages=find_packages(include=["Duitku"], exclude=["tests", "tests.*"]), python_requires='>=3.5', install_requires=[ "requests>=2.25.0", From 94f78b8e5921629a1ab593bd6cdfaeaa56681e50 Mon Sep 17 00:00:00 2001 From: Ido Widya Yudhatama Date: Fri, 2 May 2025 11:37:27 +0700 Subject: [PATCH 2/2] chore: up version to 2.8 --- pyproject.toml | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 8153bc9..05f5f1f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "Duitku" -version = "0.2.7" +version = "0.2.8" authors = [ {name = "Ido Yudhatama", email = "idowidya.yudhatama@gmail.com"}, ] diff --git a/setup.py b/setup.py index 329d956..5f9a2e4 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ setup( name="Duitku", - version="0.2.7", + version="0.2.8", description="Duitku Python SDK", long_description=long_description, url="https://github.com/idoyudha/duitku-python",