mathutilslib 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,4 @@
1
+ Metadata-Version: 2.4
2
+ Name: mathutilslib
3
+ Version: 0.0.1
4
+ Summary: Simple math utilities
@@ -0,0 +1 @@
1
+ # MathUtilsLib
@@ -0,0 +1,13 @@
1
+ __version__ = "0.0.1"
2
+
3
+ def add(a, b):
4
+ return a + b
5
+
6
+ def subtract(a, b):
7
+ return a - b
8
+
9
+ def multiply(a, b):
10
+ return a * b
11
+
12
+ def divide(a, b):
13
+ return a / b
@@ -0,0 +1,4 @@
1
+ Metadata-Version: 2.4
2
+ Name: mathutilslib
3
+ Version: 0.0.1
4
+ Summary: Simple math utilities
@@ -0,0 +1,7 @@
1
+ README.md
2
+ pyproject.toml
3
+ mathutilslib/__init__.py
4
+ mathutilslib.egg-info/PKG-INFO
5
+ mathutilslib.egg-info/SOURCES.txt
6
+ mathutilslib.egg-info/dependency_links.txt
7
+ mathutilslib.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ mathutilslib
@@ -0,0 +1,8 @@
1
+ [build-system]
2
+ requires = ["setuptools"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "mathutilslib"
7
+ version = "0.0.1"
8
+ description = "Simple math utilities"
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+