sunt 0.1.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.
sunt-0.1.0/PKG-INFO ADDED
@@ -0,0 +1,9 @@
1
+ Metadata-Version: 2.3
2
+ Name: sunt
3
+ Version: 0.1.0
4
+ Summary: Add your description here
5
+ Author: Jorge Batista
6
+ Author-email: Jorge Batista <jorgebatistafilho@gmail.com>
7
+ Requires-Python: >=3.13
8
+ Description-Content-Type: text/markdown
9
+
sunt-0.1.0/README.md ADDED
File without changes
@@ -0,0 +1,14 @@
1
+ [project]
2
+ name = "sunt"
3
+ version = "0.1.0"
4
+ description = "Add your description here"
5
+ readme = "README.md"
6
+ authors = [
7
+ { name = "Jorge Batista", email = "jorgebatistafilho@gmail.com" }
8
+ ]
9
+ requires-python = ">=3.13"
10
+ dependencies = []
11
+
12
+ [build-system]
13
+ requires = ["uv_build>=0.9.22,<0.10.0"]
14
+ build-backend = "uv_build"
@@ -0,0 +1,3 @@
1
+ from .dataset import SuntDataset
2
+
3
+ __all__ = ["SuntDataset"]
@@ -0,0 +1,5 @@
1
+
2
+
3
+ class SuntDataset:
4
+ def __init__(dir: str = None) -> None:
5
+ print("hello world")
File without changes