Metadata-Version: 2.4
Name: test-cm-py-module
Version: 0.1.0
Summary: 一个简单的加法和减法计算模块
Home-page: https://github.com/yourusername/test-cm-py-module
Author: Your Name
Author-email: Your Name <your.email@example.com>
License: MIT
Project-URL: Homepage, https://github.com/yourusername/test-cm-py-module
Project-URL: Repository, https://github.com/yourusername/test-cm-py-module
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Provides-Extra: dev
Requires-Dist: pytest>=6.0; extra == "dev"
Requires-Dist: pytest-cov>=2.0; extra == "dev"
Requires-Dist: black>=21.0; extra == "dev"
Requires-Dist: flake8>=3.8; extra == "dev"
Dynamic: author
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python

# test-cm-py-module

一个简单的加法和减法计算模块

## 安装

```bash
pip install test-cm-py-module
```

## 使用方法

```python
from test_cm_py_module import add, subtract

# 加法运算
result = add(5, 3)
print(result)  # 输出: 8

# 减法运算
result = subtract(10, 4)
print(result)  # 输出: 6
```

## 功能

- `add(a, b)`: 计算两个数的和
- `subtract(a, b)`: 计算两个数的差

## 开发

```bash
# 克隆仓库
git clone https://github.com/yourusername/test-cm-py-module.git
cd test-cm-py-module

# 安装开发依赖
pip install -e .[dev]

# 运行测试
pytest
```

## 许可证

MIT License
