nah 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.
nah-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,7 @@
1
+ Metadata-Version: 2.3
2
+ Name: nah
3
+ Version: 0.0.1
4
+ Summary: make python fun again
5
+ Requires-Python: >=3.12
6
+ Description-Content-Type: text/markdown
7
+
nah-0.0.1/README.md ADDED
File without changes
@@ -0,0 +1,11 @@
1
+ [project]
2
+ name = "nah"
3
+ version = "0.0.1"
4
+ description = "make python fun again"
5
+ readme = "README.md"
6
+ requires-python = ">=3.12"
7
+ dependencies = []
8
+
9
+ [build-system]
10
+ requires = ["uv_build>=0.9.28,<0.10.0"]
11
+ build-backend = "uv_build"
@@ -0,0 +1,12 @@
1
+ from dataclasses import dataclass
2
+
3
+
4
+ @dataclass(frozen=True, slots=True)
5
+ class sex:
6
+ good: bool = True
7
+
8
+ def __bool__(self):
9
+ return self.good
10
+
11
+ def __repr__(self):
12
+ return "sex()" if self.good else "sex(good=False)"
File without changes