初始化

This commit is contained in:
2026-06-03 09:48:47 +08:00
parent cceaa62d7c
commit 402a5d634f
6 changed files with 619 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
# CLAUDE.md
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
## 项目概述
`rkutil` 是一个 Python 工具库项目,使用 Python 3.13,通过 PyCharm 管理,虚拟环境位于 `.venv/`
## 环境配置
激活虚拟环境:
```bash
.venv/Scripts/activate
```
安装依赖(待 `pyproject.toml``requirements.txt` 创建后):
```bash
pip install -e .
# 或
pip install -r requirements.txt
```