pympp 0.0.1__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.
- pympp-0.0.1/PKG-INFO +19 -0
- pympp-0.0.1/README.md +5 -0
- pympp-0.0.1/pympp/__init__.py +3 -0
- pympp-0.0.1/pympp.egg-info/PKG-INFO +19 -0
- pympp-0.0.1/pympp.egg-info/SOURCES.txt +7 -0
- pympp-0.0.1/pympp.egg-info/dependency_links.txt +1 -0
- pympp-0.0.1/pympp.egg-info/top_level.txt +1 -0
- pympp-0.0.1/pyproject.toml +21 -0
- pympp-0.0.1/setup.cfg +4 -0
pympp-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: pympp
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: sdk for the machine payments protocol
|
|
5
|
+
License-Expression: MIT
|
|
6
|
+
Project-URL: Homepage, https://github.com/tempoxyz/pympp
|
|
7
|
+
Project-URL: Repository, https://github.com/tempoxyz/pympp
|
|
8
|
+
Keywords: payments,machine-payments,mpp,protocol
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Requires-Python: >=3.8
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
|
|
15
|
+
# pympp
|
|
16
|
+
|
|
17
|
+
SDK for the Machine Payments Protocol.
|
|
18
|
+
|
|
19
|
+
This package is under active development. Check back soon for updates.
|
pympp-0.0.1/README.md
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: pympp
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: sdk for the machine payments protocol
|
|
5
|
+
License-Expression: MIT
|
|
6
|
+
Project-URL: Homepage, https://github.com/tempoxyz/pympp
|
|
7
|
+
Project-URL: Repository, https://github.com/tempoxyz/pympp
|
|
8
|
+
Keywords: payments,machine-payments,mpp,protocol
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Requires-Python: >=3.8
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
|
|
15
|
+
# pympp
|
|
16
|
+
|
|
17
|
+
SDK for the Machine Payments Protocol.
|
|
18
|
+
|
|
19
|
+
This package is under active development. Check back soon for updates.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
pympp
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "pympp"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "sdk for the machine payments protocol"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = "MIT"
|
|
11
|
+
requires-python = ">=3.8"
|
|
12
|
+
keywords = ["payments", "machine-payments", "mpp", "protocol"]
|
|
13
|
+
classifiers = [
|
|
14
|
+
"Development Status :: 1 - Planning",
|
|
15
|
+
"Intended Audience :: Developers",
|
|
16
|
+
"Programming Language :: Python :: 3",
|
|
17
|
+
]
|
|
18
|
+
|
|
19
|
+
[project.urls]
|
|
20
|
+
Homepage = "https://github.com/tempoxyz/pympp"
|
|
21
|
+
Repository = "https://github.com/tempoxyz/pympp"
|
pympp-0.0.1/setup.cfg
ADDED