sample-packge 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.
@@ -0,0 +1,9 @@
1
+ Metadata-Version: 2.3
2
+ Name: sample-packge
3
+ Version: 0.1.0
4
+ Summary: Add your description here
5
+ Author: Mahdi Sadeghi Bakhi
6
+ Author-email: Mahdi Sadeghi Bakhi <mahdi.sadeghibakhi@farm4trad.com>
7
+ Requires-Python: >=3.12
8
+ Description-Content-Type: text/markdown
9
+
File without changes
@@ -0,0 +1,14 @@
1
+ [project]
2
+ name = "sample-packge"
3
+ version = "0.1.0"
4
+ description = "Add your description here"
5
+ readme = "README.md"
6
+ authors = [
7
+ { name = "Mahdi Sadeghi Bakhi", email = "mahdi.sadeghibakhi@farm4trad.com" }
8
+ ]
9
+ requires-python = ">=3.12"
10
+ dependencies = []
11
+
12
+ [build-system]
13
+ requires = ["uv_build>=0.8.11,<0.9.0"]
14
+ build-backend = "uv_build"
@@ -0,0 +1,2 @@
1
+ def hello() -> str:
2
+ return "Hello from sample-packge!"
File without changes
@@ -0,0 +1,14 @@
1
+ def sum (x, y):
2
+ return x + y
3
+
4
+
5
+ def sub (x, y):
6
+ return x - y
7
+
8
+ def mul (x, y):
9
+ return x * y
10
+
11
+ def div (x, y):
12
+ if y == 0:
13
+ raise ValueError("Denominator cannot be zero.")
14
+ return x / y