cacmath 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.
cacmath-1.0.0/PKG-INFO ADDED
@@ -0,0 +1,14 @@
1
+ Metadata-Version: 2.4
2
+ Name: cacmath
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
11
+
12
+ addition only
13
+
14
+ ex. caculator(1 + 1)
@@ -0,0 +1,5 @@
1
+ YAA caculator
2
+
3
+ addition only
4
+
5
+ ex. caculator(1 + 1)
@@ -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,14 @@
1
+ Metadata-Version: 2.4
2
+ Name: cacmath
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
11
+
12
+ addition only
13
+
14
+ ex. caculator(1 + 1)
@@ -0,0 +1,7 @@
1
+ README.md
2
+ setup.py
3
+ cacmath/__init__.py
4
+ cacmath.egg-info/PKG-INFO
5
+ cacmath.egg-info/SOURCES.txt
6
+ cacmath.egg-info/dependency_links.txt
7
+ cacmath.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ cacmath
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
cacmath-1.0.0/setup.py ADDED
@@ -0,0 +1,10 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name="cacmath",
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
+ )