Metadata-Version: 2.3
Name: dongtu_utils
Version: 0.1.1
Summary: Personal Python utility library
Author: aiden
Author-email: aiden <aidenpeng0504@gmail.com>
Requires-Python: >=3.11
Description-Content-Type: text/markdown

# dongtu_utils

个人 Python 工具库，提供常用的工具函数。当前包含数学相关工具。

## 安装

```bash
pip install dongtu_utils
# 或使用 uv
uv add dongtu_utils
```

## 快速使用

```python
from dongtu_utils import add

add(1, 2)    # 3
add(-1, 1)   # 0
```

## API 参考

### `add(a, b)`

两数相加，返回 `a + b` 的结果。

| 项   | 说明 |
|------|------|
| 参数 | `a: int`、`b: int`（类型标注，无运行时校验） |
| 返回 | `int` |
| 异常 | 传入无法相加的类型（如 `str` 与 `int`）会抛 `TypeError` |
