amolmath 0.0.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.
amolmath-0.0.0/LICENSE ADDED
File without changes
@@ -0,0 +1,5 @@
1
+ Metadata-Version: 2.4
2
+ Name: amolmath
3
+ Version: 0.0.0
4
+ License-File: LICENSE
5
+ Dynamic: license-file
@@ -0,0 +1,8 @@
1
+ # MyMath Package
2
+
3
+ Simple Python package for math operations.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ pip install amolmath
@@ -0,0 +1 @@
1
+ from .operations import add, subtract
@@ -0,0 +1,5 @@
1
+ def add(a, b):
2
+ return a + b
3
+
4
+ def subtract(a, b):
5
+ return a - b
@@ -0,0 +1,5 @@
1
+ Metadata-Version: 2.4
2
+ Name: amolmath
3
+ Version: 0.0.0
4
+ License-File: LICENSE
5
+ Dynamic: license-file
@@ -0,0 +1,10 @@
1
+ LICENSE
2
+ README.md
3
+ pyproject.toml
4
+ amolmath/__init__.py
5
+ amolmath/operations.py
6
+ amolmath.egg-info/PKG-INFO
7
+ amolmath.egg-info/SOURCES.txt
8
+ amolmath.egg-info/dependency_links.txt
9
+ amolmath.egg-info/top_level.txt
10
+ tests/test_operations.py
@@ -0,0 +1 @@
1
+ amolmath
@@ -0,0 +1,3 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0"]
3
+ build-backend = "setuptools.build_meta"
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
File without changes