Metadata-Version: 2.2
Name: smart_calculator
Version: 0.3.1
Author: Chukwunonso Smart Agbawo
Author-email: chukwunonsosmartagbawo@gmail.com
Maintainer: Chukwunonso Smart Agbawo
Maintainer-email: chukwunonsosmartagbawo@gmail.com
Description-Content-Type: text/markdown
Dynamic: author
Dynamic: author-email
Dynamic: description
Dynamic: description-content-type
Dynamic: maintainer
Dynamic: maintainer-email

# Smart Calculator

**Smart Calculator** is a simple Python package that provides basic arithmetic operations: addition, subtraction, multiplication, and division. It can be used as both a Python module and a command-line tool.

---

## Features

- **Addition**: Adds two numbers.
- **Subtraction**: Subtracts the second number from the first.
- **Multiplication**: Multiplies two numbers.
- **Division**: Divides the first number by the second.

---

## Installation

Install the package using `pip`:

```bash
pip install smart_calculator
```
## Usage
#### As a Python Module
* You can use the functions provided by smart_calculator in your Python code.

```python
from smart_calculator import add, sub, mult, div

# Examples
print(add(5, 3))    # Output: "value of addition: 5 + 3 = 8"
print(sub(10, 4))   # Output: "value of subtraction: 10 - 4 = 6"
print(mult(2, 7))   # Output: "value of multiplication: 2 x 7 = 14"
print(div(9, 3))    # Output: "value of division: 9 / 3 = 3.0"
```




Here's the complete README.md file with all the information organized into one file:

markdown
Copy
Edit
# Smart Calculator

**Smart Calculator** is a simple Python package that provides basic arithmetic operations: addition, subtraction, multiplication, and division. It can be used as both a Python module and a command-line tool.

---

## Features

- **Addition**: Adds two numbers.
- **Subtraction**: Subtracts the second number from the first.
- **Multiplication**: Multiplies two numbers.
- **Division**: Divides the first number by the second.

---

## Installation

Install the package using `pip`:

```bash
pip install smart_calculator
Usage
As a Python Module
You can use the functions provided by smart_calculator in your Python code.

python
Copy
Edit
from smart_calculator import add, sub, mult, div

# Examples
print(add(5, 3))    # Output: "value of addition: 5 + 3 = 8"
print(sub(10, 4))   # Output: "value of subtraction: 10 - 4 = 6"
print(mult(2, 7))   # Output: "value of multiplication: 2 x 7 = 14"
print(div(9, 3))    # Output: "value of division: 9 / 3 = 3.0"

```

## As a Command-Line Tool
#### After installing, you can use the smart_calculator command in your terminal.

### Syntax:
```python
smart_calculator <operation> <num1> <num2>
```
### Operations:
* add: Adds two numbers.
* sub: Subtracts the second number from the first.
* mult: Multiplies two numbers.
* div: Divides the first number by the second.

### Examples
```bash
smart_calculator add 5 3
# Output: value of addition: 5 + 3 = 8

smart_calculator sub 10 4
# Output: value of subtraction: 10 - 4 = 6

smart_calculator mult 2 7
# Output: value of multiplication: 2 x 7 = 14

smart_calculator div 9 3
# Output: value of division: 9 / 3 = 3.0
```
### Author
#### Chukwunonso Smart Agbawo
#### chukwunonsosmartagbawo@gmail.com
### Youtube Channel: https://www.youtube.com/channel/UCorbJd14KqURch108tAqgVw

#### License
This project is licensed under the terms of your preferred license. 

This complete file includes installation instructions, usage as both a Python module and command-line tool, local development setup, distribution, and requirements for your package. Feel free to adjust the sections further as needed!
