python-getpaid 0.1.0__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.
@@ -0,0 +1,93 @@
1
+ Metadata-Version: 2.4
2
+ Name: python-getpaid
3
+ Version: 0.1.0
4
+ Summary: Umbrella package for the python-getpaid payment processing ecosystem.
5
+ Author-email: Dominik Kozaczko <dominik@kozaczko.info>
6
+ License-Expression: MIT
7
+ Project-URL: Homepage, https://github.com/django-getpaid/python-getpaid
8
+ Project-URL: Repository, https://github.com/django-getpaid/python-getpaid
9
+ Project-URL: Documentation, https://python-getpaid.readthedocs.io
10
+ Project-URL: Changelog, https://github.com/django-getpaid/python-getpaid/releases
11
+ Classifier: Development Status :: 3 - Alpha
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: Programming Language :: Python :: 3.12
14
+ Classifier: Programming Language :: Python :: 3.13
15
+ Classifier: Topic :: Office/Business :: Financial
16
+ Classifier: Topic :: Office/Business :: Financial :: Point-Of-Sale
17
+ Classifier: Typing :: Typed
18
+ Requires-Python: >=3.12
19
+ Description-Content-Type: text/markdown
20
+ Requires-Dist: python-getpaid-core>=0.1.0
21
+ Provides-Extra: payu
22
+ Requires-Dist: python-getpaid-payu>=0.1.0; extra == "payu"
23
+ Provides-Extra: paynow
24
+ Requires-Dist: python-getpaid-paynow>=0.1.0; extra == "paynow"
25
+ Provides-Extra: przelewy24
26
+ Requires-Dist: python-getpaid-przelewy24>=0.1.0; extra == "przelewy24"
27
+ Provides-Extra: django
28
+ Requires-Dist: django-getpaid>=3.0.0a1; extra == "django"
29
+ Provides-Extra: fastapi
30
+ Requires-Dist: fastapi-getpaid>=0.1.0; extra == "fastapi"
31
+ Provides-Extra: litestar
32
+ Requires-Dist: litestar-getpaid>=0.1.0; extra == "litestar"
33
+ Provides-Extra: backends
34
+ Requires-Dist: python-getpaid[payu]; extra == "backends"
35
+ Requires-Dist: python-getpaid[paynow]; extra == "backends"
36
+ Requires-Dist: python-getpaid[przelewy24]; extra == "backends"
37
+ Provides-Extra: frameworks
38
+ Requires-Dist: python-getpaid[django]; extra == "frameworks"
39
+ Requires-Dist: python-getpaid[fastapi]; extra == "frameworks"
40
+ Requires-Dist: python-getpaid[litestar]; extra == "frameworks"
41
+ Provides-Extra: all
42
+ Requires-Dist: python-getpaid[backends]; extra == "all"
43
+ Requires-Dist: python-getpaid[frameworks]; extra == "all"
44
+
45
+ # python-getpaid
46
+
47
+ Umbrella package for the **python-getpaid** payment processing ecosystem.
48
+
49
+ ## Installation
50
+
51
+ Install the core library:
52
+
53
+ ```bash
54
+ pip install python-getpaid
55
+ ```
56
+
57
+ ### Payment gateway backends
58
+
59
+ ```bash
60
+ pip install python-getpaid[payu]
61
+ pip install python-getpaid[paynow]
62
+ pip install python-getpaid[przelewy24]
63
+ pip install python-getpaid[backends] # all backends
64
+ ```
65
+
66
+ ### Framework adapters
67
+
68
+ ```bash
69
+ pip install python-getpaid[django]
70
+ pip install python-getpaid[fastapi]
71
+ pip install python-getpaid[litestar]
72
+ pip install python-getpaid[frameworks] # all framework adapters
73
+ ```
74
+
75
+ ### Everything
76
+
77
+ ```bash
78
+ pip install python-getpaid[all]
79
+ ```
80
+
81
+ ## Extras reference
82
+
83
+ | Extra | Installs |
84
+ |---|---|
85
+ | `payu` | `python-getpaid-payu` |
86
+ | `paynow` | `python-getpaid-paynow` |
87
+ | `przelewy24` | `python-getpaid-przelewy24` |
88
+ | `django` | `django-getpaid` |
89
+ | `fastapi` | `fastapi-getpaid` |
90
+ | `litestar` | `litestar-getpaid` |
91
+ | `backends` | All payment gateway backends |
92
+ | `frameworks` | All framework adapters |
93
+ | `all` | Everything above |
@@ -0,0 +1,49 @@
1
+ # python-getpaid
2
+
3
+ Umbrella package for the **python-getpaid** payment processing ecosystem.
4
+
5
+ ## Installation
6
+
7
+ Install the core library:
8
+
9
+ ```bash
10
+ pip install python-getpaid
11
+ ```
12
+
13
+ ### Payment gateway backends
14
+
15
+ ```bash
16
+ pip install python-getpaid[payu]
17
+ pip install python-getpaid[paynow]
18
+ pip install python-getpaid[przelewy24]
19
+ pip install python-getpaid[backends] # all backends
20
+ ```
21
+
22
+ ### Framework adapters
23
+
24
+ ```bash
25
+ pip install python-getpaid[django]
26
+ pip install python-getpaid[fastapi]
27
+ pip install python-getpaid[litestar]
28
+ pip install python-getpaid[frameworks] # all framework adapters
29
+ ```
30
+
31
+ ### Everything
32
+
33
+ ```bash
34
+ pip install python-getpaid[all]
35
+ ```
36
+
37
+ ## Extras reference
38
+
39
+ | Extra | Installs |
40
+ |---|---|
41
+ | `payu` | `python-getpaid-payu` |
42
+ | `paynow` | `python-getpaid-paynow` |
43
+ | `przelewy24` | `python-getpaid-przelewy24` |
44
+ | `django` | `django-getpaid` |
45
+ | `fastapi` | `fastapi-getpaid` |
46
+ | `litestar` | `litestar-getpaid` |
47
+ | `backends` | All payment gateway backends |
48
+ | `frameworks` | All framework adapters |
49
+ | `all` | Everything above |
@@ -0,0 +1,63 @@
1
+ [project]
2
+ name = 'python-getpaid'
3
+ version = '0.1.0'
4
+ description = 'Umbrella package for the python-getpaid payment processing ecosystem.'
5
+ readme = 'README.md'
6
+ license = 'MIT'
7
+ authors = [
8
+ {name = 'Dominik Kozaczko', email = 'dominik@kozaczko.info'},
9
+ ]
10
+ requires-python = '>=3.12'
11
+ classifiers = [
12
+ 'Development Status :: 3 - Alpha',
13
+ 'Intended Audience :: Developers',
14
+ 'Programming Language :: Python :: 3.12',
15
+ 'Programming Language :: Python :: 3.13',
16
+ 'Topic :: Office/Business :: Financial',
17
+ 'Topic :: Office/Business :: Financial :: Point-Of-Sale',
18
+ 'Typing :: Typed',
19
+ ]
20
+ dependencies = [
21
+ 'python-getpaid-core>=0.1.0',
22
+ ]
23
+
24
+ [project.optional-dependencies]
25
+ # --- Payment gateway backends ---
26
+ payu = ['python-getpaid-payu>=0.1.0']
27
+ paynow = ['python-getpaid-paynow>=0.1.0']
28
+ przelewy24 = ['python-getpaid-przelewy24>=0.1.0']
29
+
30
+ # --- Framework adapters ---
31
+ django = ['django-getpaid>=3.0.0a1']
32
+ fastapi = ['fastapi-getpaid>=0.1.0']
33
+ litestar = ['litestar-getpaid>=0.1.0']
34
+
35
+ # --- Bundles ---
36
+ backends = [
37
+ 'python-getpaid[payu]',
38
+ 'python-getpaid[paynow]',
39
+ 'python-getpaid[przelewy24]',
40
+ ]
41
+ frameworks = [
42
+ 'python-getpaid[django]',
43
+ 'python-getpaid[fastapi]',
44
+ 'python-getpaid[litestar]',
45
+ ]
46
+ all = [
47
+ 'python-getpaid[backends]',
48
+ 'python-getpaid[frameworks]',
49
+ ]
50
+
51
+ [project.urls]
52
+ Homepage = 'https://github.com/django-getpaid/python-getpaid'
53
+ Repository = 'https://github.com/django-getpaid/python-getpaid'
54
+ Documentation = 'https://python-getpaid.readthedocs.io'
55
+ Changelog = 'https://github.com/django-getpaid/python-getpaid/releases'
56
+
57
+ [build-system]
58
+ requires = ['setuptools>=75.0']
59
+ build-backend = 'setuptools.build_meta'
60
+
61
+ [tool.setuptools]
62
+ # Metadata-only package -- no Python source to ship.
63
+ py-modules = []
@@ -0,0 +1,93 @@
1
+ Metadata-Version: 2.4
2
+ Name: python-getpaid
3
+ Version: 0.1.0
4
+ Summary: Umbrella package for the python-getpaid payment processing ecosystem.
5
+ Author-email: Dominik Kozaczko <dominik@kozaczko.info>
6
+ License-Expression: MIT
7
+ Project-URL: Homepage, https://github.com/django-getpaid/python-getpaid
8
+ Project-URL: Repository, https://github.com/django-getpaid/python-getpaid
9
+ Project-URL: Documentation, https://python-getpaid.readthedocs.io
10
+ Project-URL: Changelog, https://github.com/django-getpaid/python-getpaid/releases
11
+ Classifier: Development Status :: 3 - Alpha
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: Programming Language :: Python :: 3.12
14
+ Classifier: Programming Language :: Python :: 3.13
15
+ Classifier: Topic :: Office/Business :: Financial
16
+ Classifier: Topic :: Office/Business :: Financial :: Point-Of-Sale
17
+ Classifier: Typing :: Typed
18
+ Requires-Python: >=3.12
19
+ Description-Content-Type: text/markdown
20
+ Requires-Dist: python-getpaid-core>=0.1.0
21
+ Provides-Extra: payu
22
+ Requires-Dist: python-getpaid-payu>=0.1.0; extra == "payu"
23
+ Provides-Extra: paynow
24
+ Requires-Dist: python-getpaid-paynow>=0.1.0; extra == "paynow"
25
+ Provides-Extra: przelewy24
26
+ Requires-Dist: python-getpaid-przelewy24>=0.1.0; extra == "przelewy24"
27
+ Provides-Extra: django
28
+ Requires-Dist: django-getpaid>=3.0.0a1; extra == "django"
29
+ Provides-Extra: fastapi
30
+ Requires-Dist: fastapi-getpaid>=0.1.0; extra == "fastapi"
31
+ Provides-Extra: litestar
32
+ Requires-Dist: litestar-getpaid>=0.1.0; extra == "litestar"
33
+ Provides-Extra: backends
34
+ Requires-Dist: python-getpaid[payu]; extra == "backends"
35
+ Requires-Dist: python-getpaid[paynow]; extra == "backends"
36
+ Requires-Dist: python-getpaid[przelewy24]; extra == "backends"
37
+ Provides-Extra: frameworks
38
+ Requires-Dist: python-getpaid[django]; extra == "frameworks"
39
+ Requires-Dist: python-getpaid[fastapi]; extra == "frameworks"
40
+ Requires-Dist: python-getpaid[litestar]; extra == "frameworks"
41
+ Provides-Extra: all
42
+ Requires-Dist: python-getpaid[backends]; extra == "all"
43
+ Requires-Dist: python-getpaid[frameworks]; extra == "all"
44
+
45
+ # python-getpaid
46
+
47
+ Umbrella package for the **python-getpaid** payment processing ecosystem.
48
+
49
+ ## Installation
50
+
51
+ Install the core library:
52
+
53
+ ```bash
54
+ pip install python-getpaid
55
+ ```
56
+
57
+ ### Payment gateway backends
58
+
59
+ ```bash
60
+ pip install python-getpaid[payu]
61
+ pip install python-getpaid[paynow]
62
+ pip install python-getpaid[przelewy24]
63
+ pip install python-getpaid[backends] # all backends
64
+ ```
65
+
66
+ ### Framework adapters
67
+
68
+ ```bash
69
+ pip install python-getpaid[django]
70
+ pip install python-getpaid[fastapi]
71
+ pip install python-getpaid[litestar]
72
+ pip install python-getpaid[frameworks] # all framework adapters
73
+ ```
74
+
75
+ ### Everything
76
+
77
+ ```bash
78
+ pip install python-getpaid[all]
79
+ ```
80
+
81
+ ## Extras reference
82
+
83
+ | Extra | Installs |
84
+ |---|---|
85
+ | `payu` | `python-getpaid-payu` |
86
+ | `paynow` | `python-getpaid-paynow` |
87
+ | `przelewy24` | `python-getpaid-przelewy24` |
88
+ | `django` | `django-getpaid` |
89
+ | `fastapi` | `fastapi-getpaid` |
90
+ | `litestar` | `litestar-getpaid` |
91
+ | `backends` | All payment gateway backends |
92
+ | `frameworks` | All framework adapters |
93
+ | `all` | Everything above |
@@ -0,0 +1,7 @@
1
+ README.md
2
+ pyproject.toml
3
+ python_getpaid.egg-info/PKG-INFO
4
+ python_getpaid.egg-info/SOURCES.txt
5
+ python_getpaid.egg-info/dependency_links.txt
6
+ python_getpaid.egg-info/requires.txt
7
+ python_getpaid.egg-info/top_level.txt
@@ -0,0 +1,33 @@
1
+ python-getpaid-core>=0.1.0
2
+
3
+ [all]
4
+ python-getpaid[backends]
5
+ python-getpaid[frameworks]
6
+
7
+ [backends]
8
+ python-getpaid[payu]
9
+ python-getpaid[paynow]
10
+ python-getpaid[przelewy24]
11
+
12
+ [django]
13
+ django-getpaid>=3.0.0a1
14
+
15
+ [fastapi]
16
+ fastapi-getpaid>=0.1.0
17
+
18
+ [frameworks]
19
+ python-getpaid[django]
20
+ python-getpaid[fastapi]
21
+ python-getpaid[litestar]
22
+
23
+ [litestar]
24
+ litestar-getpaid>=0.1.0
25
+
26
+ [paynow]
27
+ python-getpaid-paynow>=0.1.0
28
+
29
+ [payu]
30
+ python-getpaid-payu>=0.1.0
31
+
32
+ [przelewy24]
33
+ python-getpaid-przelewy24>=0.1.0
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+