feat: 初始化项目

This commit is contained in:
李如威 2025-11-05 15:22:40 +08:00
commit 4372d7c52d
4 changed files with 70 additions and 0 deletions

69
.gitignore vendored Normal file
View File

@ -0,0 +1,69 @@
# macOS
.DS_Store
.AppleDouble
.LSOverride
.Spotlight-V100
.Trashes
.VolumeIcon.icns
Icon?
# Python
__pycache__/
*.py[cod]
*$py.class
*.pyo
*.pyd
*.so
# Packaging / build
build/
dist/
*.egg-info/
.eggs/
pip-wheel-metadata/
*.whl
# Virtual environments
.venv/
venv/
env/
ENV/
env.bak/
venv.bak/
# Test / coverage
.pytest_cache/
.cache/
coverage.xml
.coverage
htmlcov/
# IDEs / editors
.vscode/
.idea/
*.sublime-project
*.sublime-workspace
# Jupyter
.ipynb_checkpoints
*.ipynb
# Logs / local config / secrets
*.log
local_settings.py
.env
.env.*
secrets.json
# OS / misc
Thumbs.db
desktop.ini
# Docker / container local overrides
docker-compose.override.yml
# Node (if present)
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*

1
.python-version Normal file
View File

@ -0,0 +1 @@
3.13.0

0
README.md Normal file
View File

0
requirements.txt Normal file
View File