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 +14 -0
- cacmath-1.0.0/README.md +5 -0
- cacmath-1.0.0/cacmath/__init__.py +7 -0
- cacmath-1.0.0/cacmath.egg-info/PKG-INFO +14 -0
- cacmath-1.0.0/cacmath.egg-info/SOURCES.txt +7 -0
- cacmath-1.0.0/cacmath.egg-info/dependency_links.txt +1 -0
- cacmath-1.0.0/cacmath.egg-info/top_level.txt +1 -0
- cacmath-1.0.0/setup.cfg +4 -0
- cacmath-1.0.0/setup.py +10 -0
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)
|
cacmath-1.0.0/README.md
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 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
cacmath
|
cacmath-1.0.0/setup.cfg
ADDED
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
|
+
)
|