quadkit-web 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.
@@ -0,0 +1,32 @@
1
+ Metadata-Version: 2.5
2
+ Name: quadkit-web
3
+ Version: 0.0.1
4
+ Summary: Async web layer with HTMX support for QuadKit
5
+ Project-URL: Homepage, https://quadkit.dev
6
+ Project-URL: Repository, https://github.com/dbtinoy-/quadkit
7
+ Project-URL: Documentation, https://quadkit.dev
8
+ Project-URL: Issues, https://github.com/dbtinoy-/quadkit/issues
9
+ Author-email: QuadKit Team <team@quadkit.dev>
10
+ Maintainer-email: QuadKit Team <team@quadkit.dev>
11
+ License: MIT
12
+ Keywords: asgi,async,htmx,quadkit,web
13
+ Classifier: Development Status :: 3 - Alpha
14
+ Classifier: Framework :: AsyncIO
15
+ Classifier: Intended Audience :: Developers
16
+ Classifier: License :: OSI Approved :: MIT License
17
+ Classifier: Operating System :: OS Independent
18
+ Classifier: Programming Language :: Python :: 3
19
+ Classifier: Programming Language :: Python :: 3.11
20
+ Classifier: Programming Language :: Python :: 3.12
21
+ Classifier: Programming Language :: Python :: 3.13
22
+ Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
23
+ Classifier: Typing :: Typed
24
+ Requires-Python: >=3.11
25
+ Requires-Dist: quadkit>=0.0.1
26
+ Description-Content-Type: text/markdown
27
+
28
+ # quadkit-web
29
+
30
+ Async web layer with HTMX support for QuadKit.
31
+
32
+ This is a placeholder package for name reservation on PyPI.
@@ -0,0 +1,5 @@
1
+ # quadkit-web
2
+
3
+ Async web layer with HTMX support for QuadKit.
4
+
5
+ This is a placeholder package for name reservation on PyPI.
@@ -0,0 +1,37 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "quadkit-web"
7
+ version = "0.0.1"
8
+ description = "Async web layer with HTMX support for QuadKit"
9
+ readme = "README.md"
10
+ requires-python = ">=3.11"
11
+ license = {text = "MIT"}
12
+ keywords = ["web", "htmx", "async", "asgi", "quadkit"]
13
+ classifiers = [
14
+ "Development Status :: 3 - Alpha",
15
+ "Intended Audience :: Developers",
16
+ "License :: OSI Approved :: MIT License",
17
+ "Operating System :: OS Independent",
18
+ "Programming Language :: Python :: 3",
19
+ "Programming Language :: Python :: 3.11",
20
+ "Programming Language :: Python :: 3.12",
21
+ "Programming Language :: Python :: 3.13",
22
+ "Topic :: Software Development :: Libraries :: Application Frameworks",
23
+ "Framework :: AsyncIO",
24
+ "Typing :: Typed",
25
+ ]
26
+ authors = [{name = "QuadKit Team", email = "team@quadkit.dev"}]
27
+ maintainers = [{name = "QuadKit Team", email = "team@quadkit.dev"}]
28
+ dependencies = ["quadkit>=0.0.1"]
29
+
30
+ [project.urls]
31
+ Homepage = "https://quadkit.dev"
32
+ Repository = "https://github.com/dbtinoy-/quadkit"
33
+ Documentation = "https://quadkit.dev"
34
+ Issues = "https://github.com/dbtinoy-/quadkit/issues"
35
+
36
+ [tool.hatch.build.targets.wheel]
37
+ packages = ["src/quadkit_web"]
@@ -0,0 +1,3 @@
1
+ """QuadKit Web — Async web layer with HTMX support."""
2
+
3
+ __version__ = "0.0.1"