dhttpy 0.0.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.
- dhttpy-0.0.0/PKG-INFO +28 -0
- dhttpy-0.0.0/README.md +5 -0
- dhttpy-0.0.0/dhttpy/__init__.py +3 -0
- dhttpy-0.0.0/pyproject.toml +30 -0
dhttpy-0.0.0/PKG-INFO
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: dhttpy
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: The True Internet
|
|
5
|
+
Project-URL: Homepage, https://dhttp.net/
|
|
6
|
+
Project-URL: Documentation, https://docs.dhttp.net/en/docs/overview
|
|
7
|
+
Project-URL: Repository, https://github.com/genmeta/dhttp
|
|
8
|
+
Project-URL: Issues, https://github.com/genmeta/dhttp/issues
|
|
9
|
+
License-Expression: Apache-2.0
|
|
10
|
+
Keywords: dhttp,http3,identity,quic,sdk
|
|
11
|
+
Classifier: Development Status :: 3 - Alpha
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
14
|
+
Classifier: Programming Language :: Python :: 3
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
19
|
+
Classifier: Topic :: Internet
|
|
20
|
+
Classifier: Topic :: Software Development :: Libraries
|
|
21
|
+
Requires-Python: >=3.10
|
|
22
|
+
Description-Content-Type: text/markdown
|
|
23
|
+
|
|
24
|
+
# dhttpy
|
|
25
|
+
|
|
26
|
+
The True Internet.
|
|
27
|
+
|
|
28
|
+
This is a bootstrap placeholder package. Use version 0.1.0 or later for the real DHttp SDK.
|
dhttpy-0.0.0/README.md
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "dhttpy"
|
|
7
|
+
version = "0.0.0"
|
|
8
|
+
description = "The True Internet"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.10"
|
|
11
|
+
license = "Apache-2.0"
|
|
12
|
+
keywords = ["dhttp", "http3", "quic", "identity", "sdk"]
|
|
13
|
+
classifiers = [
|
|
14
|
+
"Development Status :: 3 - Alpha",
|
|
15
|
+
"Intended Audience :: Developers",
|
|
16
|
+
"License :: OSI Approved :: Apache Software License",
|
|
17
|
+
"Programming Language :: Python :: 3",
|
|
18
|
+
"Programming Language :: Python :: 3.10",
|
|
19
|
+
"Programming Language :: Python :: 3.11",
|
|
20
|
+
"Programming Language :: Python :: 3.12",
|
|
21
|
+
"Programming Language :: Python :: 3.13",
|
|
22
|
+
"Topic :: Internet",
|
|
23
|
+
"Topic :: Software Development :: Libraries",
|
|
24
|
+
]
|
|
25
|
+
|
|
26
|
+
[project.urls]
|
|
27
|
+
Homepage = "https://dhttp.net/"
|
|
28
|
+
Documentation = "https://docs.dhttp.net/en/docs/overview"
|
|
29
|
+
Repository = "https://github.com/genmeta/dhttp"
|
|
30
|
+
Issues = "https://github.com/genmeta/dhttp/issues"
|