Metadata-Version: 2.4
Name: msdebug
Version: 0.0.1
Summary: Coming soon
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# pip-helloworld

一个用于学习 PyPI 发布流程的 Hello World 示例包。

## 安装

```bash
pip install pip-helloworld
```

## 使用

### 作为命令行工具

```bash
pip-helloworld
```

### 在 Python 中使用

```python
from pip_helloworld import greet, hello

# 自定义问候
print(greet("Alice"))
# 输出: Hello, Alice! 👋 来自 pip_helloworld 包

# 默认问候
hello()
# 输出: Hello, World! 👋 来自 pip_helloworld 包
```

### 作为模块运行

```bash
python -m pip_helloworld
```

## 开发

```bash
# 克隆项目
git clone https://github.com/yourname/pip-helloworld.git
cd pip-helloworld

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

# 运行测试
pytest
```

## License

MIT
