html-tags 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,14 @@
1
+ Metadata-Version: 2.3
2
+ Name: html-tags
3
+ Version: 0.0.1
4
+ Summary: concise html tag generation
5
+ Author: Deufel
6
+ Author-email: Deufel <MDeufel13@gmail.com>
7
+ Requires-Dist: marimo>=0.20.4
8
+ Requires-Dist: marimo-dev>=0.3.1
9
+ Requires-Python: >=3.14
10
+ Description-Content-Type: text/markdown
11
+
12
+ # html-tags
13
+ >concise html tag generation
14
+ wip
@@ -0,0 +1,3 @@
1
+ # html-tags
2
+ >concise html tag generation
3
+ wip
@@ -0,0 +1,17 @@
1
+ [project]
2
+ name = "html-tags"
3
+ version = "0.0.1"
4
+ description = "concise html tag generation"
5
+ readme = "README.md"
6
+ authors = [
7
+ { name = "Deufel", email = "MDeufel13@gmail.com" }
8
+ ]
9
+ requires-python = ">=3.14"
10
+ dependencies = [
11
+ "marimo>=0.20.4",
12
+ "marimo-dev>=0.3.1",
13
+ ]
14
+
15
+ [build-system]
16
+ requires = ["uv_build>=0.9.18,<0.10.0"]
17
+ build-backend = "uv_build"
@@ -0,0 +1,7 @@
1
+ """concise html tag generation"""
2
+ __version__ = '0.0.1'
3
+ __author__ = 'Deufel'
4
+ from .core import status
5
+ __all__ = [
6
+ "status",
7
+ ]
@@ -0,0 +1,4 @@
1
+ import timeit
2
+
3
+ def status():
4
+ return print("comming soon!")