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.
@@ -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
- new-Mathify/__init__.py
6
- new-Mathify/algebra.py
7
- new-Mathify/arithmetic.py
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.0"
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
  ]
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name="new-Mathify",
5
- version="0.1.0",
5
+ version="0.1.1",
6
6
  description="A simple package for calculation and solving linear equation",
7
7
  author="shreya pandey",
8
8
  author_email="shreyapandey1530@gmail.com",
@@ -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