new-Mathify 0.1.0__tar.gz → 0.1.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.
- new_mathify-0.1.1/PKG-INFO +29 -0
- new_mathify-0.1.1/new_Mathify.egg-info/PKG-INFO +29 -0
- {new_mathify-0.1.0 → new_mathify-0.1.1}/new_Mathify.egg-info/SOURCES.txt +3 -3
- new_mathify-0.1.1/new_Mathify.egg-info/top_level.txt +1 -0
- {new_mathify-0.1.0 → new_mathify-0.1.1}/pyproject.toml +2 -1
- {new_mathify-0.1.0 → new_mathify-0.1.1}/setup.py +1 -1
- new_mathify-0.1.0/PKG-INFO +0 -9
- new_mathify-0.1.0/new_Mathify.egg-info/PKG-INFO +0 -9
- new_mathify-0.1.0/new_Mathify.egg-info/top_level.txt +0 -1
- {new_mathify-0.1.0 → new_mathify-0.1.1}/LICENSE +0 -0
- {new_mathify-0.1.0 → new_mathify-0.1.1}/README.md +0 -0
- {new_mathify-0.1.0/new-Mathify → new_mathify-0.1.1/newMathify}/__init__.py +0 -0
- {new_mathify-0.1.0/new-Mathify → new_mathify-0.1.1/newMathify}/algebra.py +0 -0
- {new_mathify-0.1.0/new-Mathify → new_mathify-0.1.1/newMathify}/arithmetic.py +0 -0
- {new_mathify-0.1.0 → new_mathify-0.1.1}/new_Mathify.egg-info/dependency_links.txt +0 -0
- {new_mathify-0.1.0 → new_mathify-0.1.1}/setup.cfg +0 -0
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: new-Mathify
|
|
3
|
+
Version: 0.1.1
|
|
4
|
+
Summary: A simple package for calculation and solving linear equation
|
|
5
|
+
Author: shreya pandey
|
|
6
|
+
Author-email: shreya pandey <shreyapandey1530@gmail.com>
|
|
7
|
+
Description-Content-Type: text/markdown
|
|
8
|
+
License-File: LICENSE
|
|
9
|
+
Dynamic: author
|
|
10
|
+
Dynamic: license-file
|
|
11
|
+
|
|
12
|
+
# Mathify
|
|
13
|
+
A simple python package for basic arithmetic and linear equation solving
|
|
14
|
+
|
|
15
|
+
## Installation
|
|
16
|
+
pip install Mathify
|
|
17
|
+
|
|
18
|
+
## usage
|
|
19
|
+
|
|
20
|
+
from Mathify.arithmetic import add,sub,multi,div ,power
|
|
21
|
+
print(add(2,3))
|
|
22
|
+
print(sub(2,3))
|
|
23
|
+
print(multi(2,3))
|
|
24
|
+
print(div(2,3))
|
|
25
|
+
print(power(2,3))
|
|
26
|
+
|
|
27
|
+
from Mathify.algebra import solve_linear
|
|
28
|
+
|
|
29
|
+
print(solve_linear(3,4))
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: new-Mathify
|
|
3
|
+
Version: 0.1.1
|
|
4
|
+
Summary: A simple package for calculation and solving linear equation
|
|
5
|
+
Author: shreya pandey
|
|
6
|
+
Author-email: shreya pandey <shreyapandey1530@gmail.com>
|
|
7
|
+
Description-Content-Type: text/markdown
|
|
8
|
+
License-File: LICENSE
|
|
9
|
+
Dynamic: author
|
|
10
|
+
Dynamic: license-file
|
|
11
|
+
|
|
12
|
+
# Mathify
|
|
13
|
+
A simple python package for basic arithmetic and linear equation solving
|
|
14
|
+
|
|
15
|
+
## Installation
|
|
16
|
+
pip install Mathify
|
|
17
|
+
|
|
18
|
+
## usage
|
|
19
|
+
|
|
20
|
+
from Mathify.arithmetic import add,sub,multi,div ,power
|
|
21
|
+
print(add(2,3))
|
|
22
|
+
print(sub(2,3))
|
|
23
|
+
print(multi(2,3))
|
|
24
|
+
print(div(2,3))
|
|
25
|
+
print(power(2,3))
|
|
26
|
+
|
|
27
|
+
from Mathify.algebra import solve_linear
|
|
28
|
+
|
|
29
|
+
print(solve_linear(3,4))
|
|
@@ -2,9 +2,9 @@ LICENSE
|
|
|
2
2
|
README.md
|
|
3
3
|
pyproject.toml
|
|
4
4
|
setup.py
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
5
|
+
newMathify/__init__.py
|
|
6
|
+
newMathify/algebra.py
|
|
7
|
+
newMathify/arithmetic.py
|
|
8
8
|
new_Mathify.egg-info/PKG-INFO
|
|
9
9
|
new_Mathify.egg-info/SOURCES.txt
|
|
10
10
|
new_Mathify.egg-info/dependency_links.txt
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
newMathify
|
|
@@ -4,8 +4,9 @@ build-backend="setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name="new-Mathify"
|
|
7
|
-
version="0.1.
|
|
7
|
+
version="0.1.1"
|
|
8
8
|
description="A simple package for calculation and solving linear equation"
|
|
9
|
+
readme = "README.md"
|
|
9
10
|
authors=[
|
|
10
11
|
{name="shreya pandey",email="shreyapandey1530@gmail.com"}
|
|
11
12
|
]
|
new_mathify-0.1.0/PKG-INFO
DELETED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: new-Mathify
|
|
3
|
-
Version: 0.1.0
|
|
4
|
-
Summary: A simple package for calculation and solving linear equation
|
|
5
|
-
Author: shreya pandey
|
|
6
|
-
Author-email: shreya pandey <shreyapandey1530@gmail.com>
|
|
7
|
-
License-File: LICENSE
|
|
8
|
-
Dynamic: author
|
|
9
|
-
Dynamic: license-file
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: new-Mathify
|
|
3
|
-
Version: 0.1.0
|
|
4
|
-
Summary: A simple package for calculation and solving linear equation
|
|
5
|
-
Author: shreya pandey
|
|
6
|
-
Author-email: shreya pandey <shreyapandey1530@gmail.com>
|
|
7
|
-
License-File: LICENSE
|
|
8
|
-
Dynamic: author
|
|
9
|
-
Dynamic: license-file
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
new-Mathify
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|