hypername 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.
- hypername-0.0.1/PKG-INFO +25 -0
- hypername-0.0.1/README.md +8 -0
- hypername-0.0.1/hypername/__init__.py +0 -0
- hypername-0.0.1/hypername.egg-info/PKG-INFO +25 -0
- hypername-0.0.1/hypername.egg-info/SOURCES.txt +7 -0
- hypername-0.0.1/hypername.egg-info/dependency_links.txt +1 -0
- hypername-0.0.1/hypername.egg-info/top_level.txt +1 -0
- hypername-0.0.1/pyproject.toml +24 -0
- hypername-0.0.1/setup.cfg +4 -0
hypername-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: hypername
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Official Hypername namespace on PyPI.
|
|
5
|
+
Author: Hypername
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://hypername.org
|
|
8
|
+
Project-URL: Repository, https://github.com/hypername-protocol
|
|
9
|
+
Keywords: identity,protocol,hypername
|
|
10
|
+
Classifier: Development Status :: 1 - Planning
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
15
|
+
Requires-Python: >=3.8
|
|
16
|
+
Description-Content-Type: text/markdown
|
|
17
|
+
|
|
18
|
+
# hypername
|
|
19
|
+
|
|
20
|
+
Official Hypername namespace on PyPI.
|
|
21
|
+
|
|
22
|
+
This package is a placeholder to reserve the name. Python SDK will be published later.
|
|
23
|
+
|
|
24
|
+
- Website: https://hypername.org
|
|
25
|
+
- GitHub: https://github.com/hypername-protocol
|
|
File without changes
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: hypername
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Official Hypername namespace on PyPI.
|
|
5
|
+
Author: Hypername
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://hypername.org
|
|
8
|
+
Project-URL: Repository, https://github.com/hypername-protocol
|
|
9
|
+
Keywords: identity,protocol,hypername
|
|
10
|
+
Classifier: Development Status :: 1 - Planning
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
15
|
+
Requires-Python: >=3.8
|
|
16
|
+
Description-Content-Type: text/markdown
|
|
17
|
+
|
|
18
|
+
# hypername
|
|
19
|
+
|
|
20
|
+
Official Hypername namespace on PyPI.
|
|
21
|
+
|
|
22
|
+
This package is a placeholder to reserve the name. Python SDK will be published later.
|
|
23
|
+
|
|
24
|
+
- Website: https://hypername.org
|
|
25
|
+
- GitHub: https://github.com/hypername-protocol
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
hypername
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=69", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "hypername"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Official Hypername namespace on PyPI."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.8"
|
|
11
|
+
authors = [{ name = "Hypername" }]
|
|
12
|
+
license = { text = "MIT" }
|
|
13
|
+
keywords = ["identity", "protocol", "hypername"]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Development Status :: 1 - Planning",
|
|
16
|
+
"Intended Audience :: Developers",
|
|
17
|
+
"License :: OSI Approved :: MIT License",
|
|
18
|
+
"Programming Language :: Python :: 3",
|
|
19
|
+
"Programming Language :: Python :: 3 :: Only",
|
|
20
|
+
]
|
|
21
|
+
|
|
22
|
+
[project.urls]
|
|
23
|
+
Homepage = "https://hypername.org"
|
|
24
|
+
Repository = "https://github.com/hypername-protocol"
|