ezbilling 0.1.0__py3-none-any.whl
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,40 @@
|
|
1
|
+
Metadata-Version: 2.4
|
2
|
+
Name: ezbilling
|
3
|
+
Version: 0.1.0
|
4
|
+
Summary: A small Python package that says hello.
|
5
|
+
Home-page: https://github.com/Ezbillpay
|
6
|
+
Author: Nithesh
|
7
|
+
Author-email: Your Name <your.email@example.com>
|
8
|
+
License: MIT
|
9
|
+
Classifier: Programming Language :: Python :: 3
|
10
|
+
Classifier: License :: OSI Approved :: MIT License
|
11
|
+
Classifier: Operating System :: OS Independent
|
12
|
+
Requires-Python: >=3.7
|
13
|
+
Description-Content-Type: text/markdown
|
14
|
+
License-File: LICENSE
|
15
|
+
Dynamic: author
|
16
|
+
Dynamic: home-page
|
17
|
+
Dynamic: license-file
|
18
|
+
Dynamic: requires-python
|
19
|
+
|
20
|
+
<!--
|
21
|
+
python -m build
|
22
|
+
|
23
|
+
twine upload dist/*
|
24
|
+
|
25
|
+
pypi-AgEIcHlwaS5vcmcCJDI1ZmI2MTUyLWI0MGQtNDExZi1iMzFhLWFhOTIwY2E0MjdkNgACKlszLCI5YjczMWU2MS1mZjg3LTQyNmYtYWZlYy02ZDc1MzNjNThkZmIiXQAABiAEzDCORZ0kqvuZMC-mk0xycE_Ba7V_vQHzlooQ0nJKYA
|
26
|
+
|
27
|
+
pypi-AgEIcHlwaS5vcmcCJGE1MjE4MDNiLTVlNTYtNDg4Yy1hN2I5LTM2MjQ3NzQ1ZGFkZQACKlszLCI5YjczMWU2MS1mZjg3LTQyNmYtYWZlYy02ZDc1MzNjNThkZmIiXQAABiCEbEqPgAplNqAYIu49wvkt2NGXS3UzCKQjMcrpX7eUMA
|
28
|
+
|
29
|
+
|
30
|
+
-->
|
31
|
+
|
32
|
+
|
33
|
+
# Your Package
|
34
|
+
|
35
|
+
A small Python package that says hello.
|
36
|
+
|
37
|
+
## Installation
|
38
|
+
|
39
|
+
```bash
|
40
|
+
pip install ezbillpg
|
@@ -0,0 +1,7 @@
|
|
1
|
+
ezbilling-0.1.0.dist-info/licenses/LICENSE,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
+
ezbillpg/__init__.py,sha256=uFL_8Kz2L1LSaztzSphDQBo9Z0NaGr34xZ1DMZhRi5k,35
|
3
|
+
ezbillpg/payment_gateway.py,sha256=Bq2a-vtoTPC9r7nlQ0X4dmv4f_yzdv8RgwrXApExarM,127
|
4
|
+
ezbilling-0.1.0.dist-info/METADATA,sha256=6dlMORhGeGjdrePV36PjXLtsEcTu6gBLwLkvN3GD-w0,1051
|
5
|
+
ezbilling-0.1.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
6
|
+
ezbilling-0.1.0.dist-info/top_level.txt,sha256=nT6Xkt_Zx2Zg2lON7yJPD8Pdc4uOpo65t1GBRWhHRoI,9
|
7
|
+
ezbilling-0.1.0.dist-info/RECORD,,
|
File without changes
|
@@ -0,0 +1 @@
|
|
1
|
+
ezbillpg
|
ezbillpg/__init__.py
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
from .payment_gateway import hello
|