simple-sum-add 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,7 @@
1
+ Metadata-Version: 2.4
2
+ Name: simple-sum-add
3
+ Version: 0.0.1
4
+ Summary: A simple package to add two numbers
5
+ Author: Rasel Mahmud
6
+ Dynamic: author
7
+ Dynamic: summary
@@ -0,0 +1,9 @@
1
+ # Simple Sum Add
2
+
3
+ This is a simple Python package that adds two numbers.
4
+
5
+ ## Usage:
6
+
7
+ from simple_sum_add import add
8
+
9
+ print(add(2, 3)) # 5
File without changes
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,9 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name="simple-sum-add",
5
+ version="0.0.1",
6
+ packages=find_packages(),
7
+ description="A simple package to add two numbers",
8
+ author="Rasel Mahmud",
9
+ )
@@ -0,0 +1 @@
1
+ from .calculator import add
@@ -0,0 +1,2 @@
1
+ def add(a, b):
2
+ return a + b
@@ -0,0 +1,7 @@
1
+ Metadata-Version: 2.4
2
+ Name: simple-sum-add
3
+ Version: 0.0.1
4
+ Summary: A simple package to add two numbers
5
+ Author: Rasel Mahmud
6
+ Dynamic: author
7
+ Dynamic: summary
@@ -0,0 +1,9 @@
1
+ README.md
2
+ pyproject.toml
3
+ setup.py
4
+ simple_sum_add/__init__.py
5
+ simple_sum_add/calculator.py
6
+ simple_sum_add.egg-info/PKG-INFO
7
+ simple_sum_add.egg-info/SOURCES.txt
8
+ simple_sum_add.egg-info/dependency_links.txt
9
+ simple_sum_add.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ simple_sum_add