Metadata-Version: 2.4
Name: xiaoming-hello-pypi
Version: 0.1.0
Summary: 一个极简的 PyPI 教程包
Requires-Python: >=3.11
Description-Content-Type: text/markdown

# hello-pypi-demo

一个极简的 PyPI 教程包，用于学习 Python 包的构建与发布流程。

## 安装

```bash
uv add hello-pypi-demo
```

## 使用

```python
from hello_pypi import hello

print(hello())          # Hello, World!
print(hello("Python"))  # Hello, Python!
```

## 开发

```bash
# 构建
uv build

# 发布到 PyPI（需要 API Token）
uv publish --token <your-api-token>
```
