From 3377b13a8cbfc374a4db446a9304d67f6bfa138b Mon Sep 17 00:00:00 2001 From: Israel Goytom Date: Wed, 17 Aug 2022 12:27:36 -0600 Subject: [PATCH 1/2] Add callback param and change the redirect_url to callback_url. (#4) From 35cb211520c271ce42da1286d37bc2c93f060628 Mon Sep 17 00:00:00 2001 From: Israel Goytom Date: Thu, 25 Aug 2022 06:32:59 -0600 Subject: [PATCH 2/2] Update setup.py (#5) * Add callback param and change the redirect_url to callback_url. * Update setup.py Updated the setuptools to find packages automatically without explicit passing where to find packages Co-authored-by: Adil Mohak <60693922+adilmohak@users.noreply.github.com> --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index bf02394..7dda10b 100644 --- a/setup.py +++ b/setup.py @@ -24,9 +24,9 @@ "Topic :: Software Development :: Libraries :: Python Modules", ], package_dir={"chapa": "chapa"}, - packages=setuptools.find_packages(where="chapa"), + packages=setuptools.find_packages(), python_requires=">=3.6", install_requires=[ "requests", ], -) \ No newline at end of file +)