Metadata-Version: 2.4
Name: shipzo_plus_hun
Version: 0.1.1
Summary: Shipzo Plus 기능을 제공하는 패키지
Author-email: hun0219 <gsw98000@gmail.com>
License: MIT
Project-URL: Homepage, https://github.com/hun0219/shipzo_plus
Project-URL: Issues, https://github.com/hun0219/shipzo_plus/Issues
Requires-Python: >=3.9
Description-Content-Type: text/markdown

## pyproject.py
![image](https://github.com/user-attachments/assets/ff31d59b-bd25-4ec2-99b8-55e01ac7f1be)
## plus.py
```
import sys

def plus(a, b):
    return a + b

def main():
    args = sys.argv[1:]
    a = int(args[0])
    b = int(args[1])
    print(plus(a, b))
```
## plus.py 결과
![image](https://github.com/user-attachments/assets/22b03f79-326b-4507-99fb-e514518d9f48)
