# 错误：未找到 README.md

- **ID:** `python/setuptools-readme-file-not-found`
- **领域:** python
- **类别:** data_error
- **验证级别:** ai_generated
- **修复率:** 80%

## 根因

setup.py 中的 long_description 引用了项目目录中不存在的文件。

## 版本兼容性

| 版本 | 状态 | 引入 | 弃用 |
|------|------|------|------|
| 3.6 | active | — | — |
| 3.7 | active | — | — |
| 3.8 | active | — | — |

## 解决方案

1. **** (90% 成功率)
   ```
   touch README.md
   ```
2. **** (95% 成功率)
   ```
   from pathlib import Path; this_directory = Path(__file__).parent; long_description = (this_directory / 'README.md').read_text()
   ```

## 无效尝试

- **** — May work but hides missing documentation. (20% 失败率)
- **** — May lose PyPI description; not always necessary. (40% 失败率)
