cac-math 1.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.
@@ -0,0 +1,10 @@
1
+ Metadata-Version: 2.4
2
+ Name: cac_math
3
+ Version: 1.0.0
4
+ Summary: YAA caculator
5
+ Description-Content-Type: text/markdown
6
+ Dynamic: description
7
+ Dynamic: description-content-type
8
+ Dynamic: summary
9
+
10
+ YAA caculator
@@ -0,0 +1 @@
1
+ YAA caculator
@@ -0,0 +1,7 @@
1
+ def caculate(expr):
2
+ parts = expr.split("+")
3
+ one = int(parts[0].strip())
4
+ two = int(parts[1].strip())
5
+ result = one + two
6
+ print(result)
7
+ return result
@@ -0,0 +1,10 @@
1
+ Metadata-Version: 2.4
2
+ Name: cac_math
3
+ Version: 1.0.0
4
+ Summary: YAA caculator
5
+ Description-Content-Type: text/markdown
6
+ Dynamic: description
7
+ Dynamic: description-content-type
8
+ Dynamic: summary
9
+
10
+ YAA caculator
@@ -0,0 +1,7 @@
1
+ README.md
2
+ setup.py
3
+ cac/__init__.py
4
+ cac_math.egg-info/PKG-INFO
5
+ cac_math.egg-info/SOURCES.txt
6
+ cac_math.egg-info/dependency_links.txt
7
+ cac_math.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ cac
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,10 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name="cac_math",
5
+ version="1.0.0",
6
+ packages=find_packages(),
7
+ description="YAA caculator",
8
+ long_description=open("README.md", encoding="utf-8").read(),
9
+ long_description_content_type="text/markdown",
10
+ )