easy-to-maths 0.0.2__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.
- easy_to_maths-0.0.2/LICENSE +21 -0
- easy_to_maths-0.0.2/PKG-INFO +88 -0
- easy_to_maths-0.0.2/easy_to_maths.egg-info/PKG-INFO +88 -0
- easy_to_maths-0.0.2/easy_to_maths.egg-info/SOURCES.txt +9 -0
- easy_to_maths-0.0.2/easy_to_maths.egg-info/dependency_links.txt +1 -0
- easy_to_maths-0.0.2/easy_to_maths.egg-info/not-zip-safe +1 -0
- easy_to_maths-0.0.2/easy_to_maths.egg-info/top_level.txt +1 -0
- easy_to_maths-0.0.2/pyproject.toml +22 -0
- easy_to_maths-0.0.2/readme.md +71 -0
- easy_to_maths-0.0.2/setup.cfg +43 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2018 The Python Packaging Authority
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: easy-to-maths
|
|
3
|
+
Version: 0.0.2
|
|
4
|
+
Summary: A simple Python package providing basic arithmetic operations.
|
|
5
|
+
Home-page: https://github.com/Arpitsoni89/maths-tools
|
|
6
|
+
Author: Arpit Soni
|
|
7
|
+
Author-email: Arpit Soni <harshit998ops@gmail.com>
|
|
8
|
+
License-Expression: MIT
|
|
9
|
+
Project-URL: Homepage, https://github.com/Arpitsoni89/maths-tools
|
|
10
|
+
Project-URL: Issues, https://github.com/Arpitsoni89/maths-tools/issues
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Classifier: Operating System :: OS Independent
|
|
13
|
+
Requires-Python: >=3.9
|
|
14
|
+
Description-Content-Type: text/markdown
|
|
15
|
+
License-File: LICENSE
|
|
16
|
+
Dynamic: license-file
|
|
17
|
+
|
|
18
|
+
# Maths Tools
|
|
19
|
+
|
|
20
|
+
A lightweight Python package providing simple mathematical operations.
|
|
21
|
+
|
|
22
|
+
## Features
|
|
23
|
+
|
|
24
|
+
- ➕ Addition
|
|
25
|
+
- ➖ Subtraction
|
|
26
|
+
- ✖️ Multiplication
|
|
27
|
+
- ➗ Division
|
|
28
|
+
- % Modulus
|
|
29
|
+
|
|
30
|
+
## Installation
|
|
31
|
+
|
|
32
|
+
Install the package from PyPI:
|
|
33
|
+
|
|
34
|
+
```bash
|
|
35
|
+
pip install maths-tools
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
or
|
|
39
|
+
|
|
40
|
+
```bash
|
|
41
|
+
python -m pip install maths-tools
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
## Usage
|
|
45
|
+
|
|
46
|
+
```python
|
|
47
|
+
import maths
|
|
48
|
+
|
|
49
|
+
print(maths.addition(10, 5))
|
|
50
|
+
print(maths.subraction(10, 5))
|
|
51
|
+
print(maths.multiplication(10, 5))
|
|
52
|
+
print(maths.division(10, 5))
|
|
53
|
+
print(maths.modulus(10, 5))
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
### Output
|
|
57
|
+
|
|
58
|
+
```
|
|
59
|
+
15
|
|
60
|
+
5
|
|
61
|
+
50
|
|
62
|
+
2.0
|
|
63
|
+
0
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
## Functions
|
|
67
|
+
|
|
68
|
+
| Function | Description |
|
|
69
|
+
|----------|-------------|
|
|
70
|
+
| `addition(a, b)` | Returns the sum of two numbers |
|
|
71
|
+
| `subraction(a, b)` | Returns the difference of two numbers |
|
|
72
|
+
| `multiplication(a, b)` | Returns the product of two numbers |
|
|
73
|
+
| `division(a, b)` | Returns the quotient of two numbers |
|
|
74
|
+
| `modulus(a, b)` | Returns the remainder after division |
|
|
75
|
+
|
|
76
|
+
## Requirements
|
|
77
|
+
|
|
78
|
+
- Python 3.9 or later
|
|
79
|
+
|
|
80
|
+
## License
|
|
81
|
+
|
|
82
|
+
MIT License
|
|
83
|
+
|
|
84
|
+
## Author
|
|
85
|
+
|
|
86
|
+
Arpit Soni
|
|
87
|
+
|
|
88
|
+
GitHub: https://github.com/Arpitsoni89/maths-tools
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: easy-to-maths
|
|
3
|
+
Version: 0.0.2
|
|
4
|
+
Summary: A simple Python package providing basic arithmetic operations.
|
|
5
|
+
Home-page: https://github.com/Arpitsoni89/maths-tools
|
|
6
|
+
Author: Arpit Soni
|
|
7
|
+
Author-email: Arpit Soni <harshit998ops@gmail.com>
|
|
8
|
+
License-Expression: MIT
|
|
9
|
+
Project-URL: Homepage, https://github.com/Arpitsoni89/maths-tools
|
|
10
|
+
Project-URL: Issues, https://github.com/Arpitsoni89/maths-tools/issues
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Classifier: Operating System :: OS Independent
|
|
13
|
+
Requires-Python: >=3.9
|
|
14
|
+
Description-Content-Type: text/markdown
|
|
15
|
+
License-File: LICENSE
|
|
16
|
+
Dynamic: license-file
|
|
17
|
+
|
|
18
|
+
# Maths Tools
|
|
19
|
+
|
|
20
|
+
A lightweight Python package providing simple mathematical operations.
|
|
21
|
+
|
|
22
|
+
## Features
|
|
23
|
+
|
|
24
|
+
- ➕ Addition
|
|
25
|
+
- ➖ Subtraction
|
|
26
|
+
- ✖️ Multiplication
|
|
27
|
+
- ➗ Division
|
|
28
|
+
- % Modulus
|
|
29
|
+
|
|
30
|
+
## Installation
|
|
31
|
+
|
|
32
|
+
Install the package from PyPI:
|
|
33
|
+
|
|
34
|
+
```bash
|
|
35
|
+
pip install maths-tools
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
or
|
|
39
|
+
|
|
40
|
+
```bash
|
|
41
|
+
python -m pip install maths-tools
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
## Usage
|
|
45
|
+
|
|
46
|
+
```python
|
|
47
|
+
import maths
|
|
48
|
+
|
|
49
|
+
print(maths.addition(10, 5))
|
|
50
|
+
print(maths.subraction(10, 5))
|
|
51
|
+
print(maths.multiplication(10, 5))
|
|
52
|
+
print(maths.division(10, 5))
|
|
53
|
+
print(maths.modulus(10, 5))
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
### Output
|
|
57
|
+
|
|
58
|
+
```
|
|
59
|
+
15
|
|
60
|
+
5
|
|
61
|
+
50
|
|
62
|
+
2.0
|
|
63
|
+
0
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
## Functions
|
|
67
|
+
|
|
68
|
+
| Function | Description |
|
|
69
|
+
|----------|-------------|
|
|
70
|
+
| `addition(a, b)` | Returns the sum of two numbers |
|
|
71
|
+
| `subraction(a, b)` | Returns the difference of two numbers |
|
|
72
|
+
| `multiplication(a, b)` | Returns the product of two numbers |
|
|
73
|
+
| `division(a, b)` | Returns the quotient of two numbers |
|
|
74
|
+
| `modulus(a, b)` | Returns the remainder after division |
|
|
75
|
+
|
|
76
|
+
## Requirements
|
|
77
|
+
|
|
78
|
+
- Python 3.9 or later
|
|
79
|
+
|
|
80
|
+
## License
|
|
81
|
+
|
|
82
|
+
MIT License
|
|
83
|
+
|
|
84
|
+
## Author
|
|
85
|
+
|
|
86
|
+
Arpit Soni
|
|
87
|
+
|
|
88
|
+
GitHub: https://github.com/Arpitsoni89/maths-tools
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=77.0.3", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "easy-to-maths"
|
|
7
|
+
version = "0.0.2"
|
|
8
|
+
description = "A simple Python package providing basic arithmetic operations."
|
|
9
|
+
readme = "readme.md"
|
|
10
|
+
requires-python = ">=3.9"
|
|
11
|
+
authors = [
|
|
12
|
+
{ name = "Arpit Soni", email = "harshit998ops@gmail.com" }
|
|
13
|
+
]
|
|
14
|
+
license = "MIT"
|
|
15
|
+
classifiers = [
|
|
16
|
+
"Programming Language :: Python :: 3",
|
|
17
|
+
"Operating System :: OS Independent",
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
[project.urls]
|
|
21
|
+
Homepage = "https://github.com/Arpitsoni89/maths-tools"
|
|
22
|
+
Issues = "https://github.com/Arpitsoni89/maths-tools/issues"
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
# Maths Tools
|
|
2
|
+
|
|
3
|
+
A lightweight Python package providing simple mathematical operations.
|
|
4
|
+
|
|
5
|
+
## Features
|
|
6
|
+
|
|
7
|
+
- ➕ Addition
|
|
8
|
+
- ➖ Subtraction
|
|
9
|
+
- ✖️ Multiplication
|
|
10
|
+
- ➗ Division
|
|
11
|
+
- % Modulus
|
|
12
|
+
|
|
13
|
+
## Installation
|
|
14
|
+
|
|
15
|
+
Install the package from PyPI:
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
pip install maths-tools
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
or
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
python -m pip install maths-tools
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
## Usage
|
|
28
|
+
|
|
29
|
+
```python
|
|
30
|
+
import maths
|
|
31
|
+
|
|
32
|
+
print(maths.addition(10, 5))
|
|
33
|
+
print(maths.subraction(10, 5))
|
|
34
|
+
print(maths.multiplication(10, 5))
|
|
35
|
+
print(maths.division(10, 5))
|
|
36
|
+
print(maths.modulus(10, 5))
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
### Output
|
|
40
|
+
|
|
41
|
+
```
|
|
42
|
+
15
|
|
43
|
+
5
|
|
44
|
+
50
|
|
45
|
+
2.0
|
|
46
|
+
0
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
## Functions
|
|
50
|
+
|
|
51
|
+
| Function | Description |
|
|
52
|
+
|----------|-------------|
|
|
53
|
+
| `addition(a, b)` | Returns the sum of two numbers |
|
|
54
|
+
| `subraction(a, b)` | Returns the difference of two numbers |
|
|
55
|
+
| `multiplication(a, b)` | Returns the product of two numbers |
|
|
56
|
+
| `division(a, b)` | Returns the quotient of two numbers |
|
|
57
|
+
| `modulus(a, b)` | Returns the remainder after division |
|
|
58
|
+
|
|
59
|
+
## Requirements
|
|
60
|
+
|
|
61
|
+
- Python 3.9 or later
|
|
62
|
+
|
|
63
|
+
## License
|
|
64
|
+
|
|
65
|
+
MIT License
|
|
66
|
+
|
|
67
|
+
## Author
|
|
68
|
+
|
|
69
|
+
Arpit Soni
|
|
70
|
+
|
|
71
|
+
GitHub: https://github.com/Arpitsoni89/maths-tools
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
[metadata]
|
|
2
|
+
name = maths-tools
|
|
3
|
+
version = 0.1.0
|
|
4
|
+
description = Mathematics tools and utilities
|
|
5
|
+
long_description = file: README.md
|
|
6
|
+
long_description_content_type = text/markdown
|
|
7
|
+
author = Arpit Soni
|
|
8
|
+
license = MIT
|
|
9
|
+
license_files = LICENSE
|
|
10
|
+
url = https://github.com/Arpitsoni89/maths-tools
|
|
11
|
+
project_urls =
|
|
12
|
+
Homepage = https://github.com/Arpitsoni89/maths-tools
|
|
13
|
+
Source = https://github.com/Arpitsoni89/maths-tools
|
|
14
|
+
Tracker = https://github.com/Arpitsoni89/maths-tools/issues
|
|
15
|
+
classifiers =
|
|
16
|
+
Programming Language :: Python :: 3
|
|
17
|
+
Programming Language :: Python :: 3.9
|
|
18
|
+
Programming Language :: Python :: 3.10
|
|
19
|
+
Programming Language :: Python :: 3.11
|
|
20
|
+
Programming Language :: Python :: 3.12
|
|
21
|
+
License :: OSI Approved :: MIT License
|
|
22
|
+
Operating System :: OS Independent
|
|
23
|
+
|
|
24
|
+
[options]
|
|
25
|
+
packages = find:
|
|
26
|
+
python_requires = >=3.9
|
|
27
|
+
include_package_data = True
|
|
28
|
+
zip_safe = False
|
|
29
|
+
|
|
30
|
+
[options.packages.find]
|
|
31
|
+
include =
|
|
32
|
+
maths-tools*
|
|
33
|
+
exclude =
|
|
34
|
+
tests*
|
|
35
|
+
docs*
|
|
36
|
+
|
|
37
|
+
[bdist_wheel]
|
|
38
|
+
universal = 0
|
|
39
|
+
|
|
40
|
+
[egg_info]
|
|
41
|
+
tag_build =
|
|
42
|
+
tag_date = 0
|
|
43
|
+
|