Metadata-Version: 2.4
Name: simplecalc-ShunchaoGuo
Version: 0.1.0
Summary: A simple calculator Python package
Author-email: ShunchaoGuo <ggbond4869@gmail.com>
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# simplecalc
一个适合初学者的简单 Python 计算库。

## 安装
```bash
pip install simplecalc-yourname
```

## 使用
```python
from simplecalc import add, sub


print(add(1, 2))  # 3
print(sub(5, 3))  # 2
```

