Metadata-Version: 2.1
Name: shipzo_cmd
Version: 0.1.1
Summary: project package
Author-email: hun0219 <gsw98000@gmail.com>
License: MIT
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: shipzo-plus>=0.1.3
Requires-Dist: shipzo-mult>=0.1.0
Requires-Dist: shipzo-divide>=0.1.0

# shipzo 사칙연산 팀 프로젝트
## **기능**
- 더하기
- 곱하기
- 나누기
## **설치**
```py
$ pip install shipzo_cmd
```
## **결과**
- 더하기
```py
$ python
>>> sum(a,b)
>>> sum(a+b)
```
- 곱하기
```py
$ python
>>> sum(a,b)
>>> sum(a*b)
```
- 나누기
```py
$ python
>>> sum(a,b)
>>> sum(a/b)                                                                       
```

## **참조**
- 더하기
https://github.com/rlaehgus97/shipzo_plus
- 곱하기
https://github.com/rlaehgus97/shipzo_mult
- 나누기
https://github.com/rlaehgus97/shipzo_divide
