Skip to content

Commit

Permalink
Merge pull request #18 from twais/fix/update-package-name
Browse files Browse the repository at this point in the history
Fix/Update Package Name
  • Loading branch information
twais authored Aug 21, 2023
2 parents 04bfeac + 262a79e commit 0ab9be0
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ pip install pesapal-py

### Authenticating
```
from pesapal_py.payments import PesaPal
from pesapal.payments import PesaPal
pesapal = PesaPal("test_consumer_key", "test_consumer_secret")
auth = pesapal.authenticate()
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
long_description_content_type='text/markdown',
author="Brian Owino Otieno",
author_email="brian.otieno709@gmail.com",
packages=["pesapal_py"],
packages=["pesapal"],
url="https://github.com/twais/pesapal-py",
download_url="https://github.com/twais/pesapal-py/archive/refs/tags/v0.0.1.tar.gz",
install_requires=["requests"],
Expand Down
2 changes: 1 addition & 1 deletion tests/test_payments.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import mock
import json

from pesapal_py.payments import PesaPal
from pesapal.payments import PesaPal


class TestPesapal(unittest.TestCase):
Expand Down

0 comments on commit 0ab9be0

Please sign in to comment.