span-table 0.1.0__tar.gz → 0.2.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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: span-table
3
- Version: 0.1.0
3
+ Version: 0.2.0
4
4
  Summary: span-table is a lightweight Python helper for rendering ASCII tables with merged cells using Rich-style markup.
5
5
  Project-URL: Repository, https://github.com/soamicharan/span-table
6
6
  Project-URL: Homepage, https://github.com/soamicharan/span-table
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "span-table"
3
- version = "0.1.0"
3
+ version = "0.2.0"
4
4
  description = "span-table is a lightweight Python helper for rendering ASCII tables with merged cells using Rich-style markup."
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.9"
@@ -0,0 +1,3 @@
1
+ from src.span_table.table import span_table
2
+
3
+ __all__ = ["span_table"]
@@ -70,7 +70,7 @@ wheels = [
70
70
 
71
71
  [[package]]
72
72
  name = "span-table"
73
- version = "0.1.0"
73
+ version = "0.2.0"
74
74
  source = { editable = "." }
75
75
  dependencies = [
76
76
  { name = "rich" },
span_table-0.1.0/main.py DELETED
@@ -1,6 +0,0 @@
1
- def main():
2
- print("Hello from span-table!")
3
-
4
-
5
- if __name__ == "__main__":
6
- main()
@@ -1,3 +0,0 @@
1
- from table import span_table
2
-
3
- __all__ = ["span_table"]
File without changes
File without changes
File without changes
File without changes