python-payway 0.0.6__tar.gz → 0.0.7__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {python_payway-0.0.6 → python_payway-0.0.7}/PKG-INFO +4 -1
- {python_payway-0.0.6 → python_payway-0.0.7}/pyproject.toml +6 -1
- {python_payway-0.0.6 → python_payway-0.0.7}/python_payway.egg-info/PKG-INFO +4 -1
- {python_payway-0.0.6 → python_payway-0.0.7}/LICENSE +0 -0
- {python_payway-0.0.6 → python_payway-0.0.7}/README.md +0 -0
- {python_payway-0.0.6 → python_payway-0.0.7}/payway/__init__.py +0 -0
- {python_payway-0.0.6 → python_payway-0.0.7}/payway/client.py +0 -0
- {python_payway-0.0.6 → python_payway-0.0.7}/payway/constants.py +0 -0
- {python_payway-0.0.6 → python_payway-0.0.7}/payway/customers.py +0 -0
- {python_payway-0.0.6 → python_payway-0.0.7}/payway/exceptions.py +0 -0
- {python_payway-0.0.6 → python_payway-0.0.7}/payway/model.py +0 -0
- {python_payway-0.0.6 → python_payway-0.0.7}/payway/test_utils.py +0 -0
- {python_payway-0.0.6 → python_payway-0.0.7}/payway/transactions.py +0 -0
- {python_payway-0.0.6 → python_payway-0.0.7}/payway/utils.py +0 -0
- {python_payway-0.0.6 → python_payway-0.0.7}/python_payway.egg-info/SOURCES.txt +0 -0
- {python_payway-0.0.6 → python_payway-0.0.7}/python_payway.egg-info/dependency_links.txt +0 -0
- {python_payway-0.0.6 → python_payway-0.0.7}/python_payway.egg-info/requires.txt +0 -0
- {python_payway-0.0.6 → python_payway-0.0.7}/python_payway.egg-info/top_level.txt +0 -0
- {python_payway-0.0.6 → python_payway-0.0.7}/setup.cfg +0 -0
- {python_payway-0.0.6 → python_payway-0.0.7}/tests/__init__.py +0 -0
- {python_payway-0.0.6 → python_payway-0.0.7}/tests/test_client.py +0 -0
- {python_payway-0.0.6 → python_payway-0.0.7}/tests/test_customers.py +0 -0
- {python_payway-0.0.6 → python_payway-0.0.7}/tests/test_transactions.py +0 -0
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: python-payway
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.7
|
|
4
4
|
Summary: Python client for working with Westpac's PayWay REST API
|
|
5
5
|
Author-email: Ben Napper <reppan197@gmail.com>
|
|
6
6
|
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/napper1/python-payway
|
|
8
|
+
Project-URL: Repository, https://github.com/napper1/python-payway
|
|
9
|
+
Project-URL: Issues, https://github.com/napper1/python-payway/issues
|
|
7
10
|
Keywords: payway,westpac,api,client
|
|
8
11
|
Classifier: Programming Language :: Python :: 3
|
|
9
12
|
Classifier: License :: OSI Approved :: MIT License
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "python-payway"
|
|
7
|
-
version = "0.0.
|
|
7
|
+
version = "0.0.7"
|
|
8
8
|
description = "Python client for working with Westpac's PayWay REST API"
|
|
9
9
|
authors = [
|
|
10
10
|
{ name = "Ben Napper", email = "reppan197@gmail.com" }
|
|
@@ -22,6 +22,11 @@ dependencies = [
|
|
|
22
22
|
"requests>=2.20.0",
|
|
23
23
|
]
|
|
24
24
|
|
|
25
|
+
[project.urls]
|
|
26
|
+
Homepage = "https://github.com/napper1/python-payway"
|
|
27
|
+
Repository = "https://github.com/napper1/python-payway"
|
|
28
|
+
Issues = "https://github.com/napper1/python-payway/issues"
|
|
29
|
+
|
|
25
30
|
[project.optional-dependencies]
|
|
26
31
|
dev = [
|
|
27
32
|
"pre-commit>=3.5.0",
|
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: python-payway
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.7
|
|
4
4
|
Summary: Python client for working with Westpac's PayWay REST API
|
|
5
5
|
Author-email: Ben Napper <reppan197@gmail.com>
|
|
6
6
|
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/napper1/python-payway
|
|
8
|
+
Project-URL: Repository, https://github.com/napper1/python-payway
|
|
9
|
+
Project-URL: Issues, https://github.com/napper1/python-payway/issues
|
|
7
10
|
Keywords: payway,westpac,api,client
|
|
8
11
|
Classifier: Programming Language :: Python :: 3
|
|
9
12
|
Classifier: License :: OSI Approved :: MIT License
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|