178 lines
2.2 KiB
Plaintext
178 lines
2.2 KiB
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
pip-wheel-metadata/
|
|
share/python-wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
MANIFEST
|
|
|
|
# PyInstaller
|
|
*.manifest
|
|
*.spec
|
|
|
|
# Installer logs
|
|
pip-log.txt
|
|
pip-delete-this-directory.txt
|
|
|
|
# Unit test / coverage reports
|
|
htmlcov/
|
|
.tox/
|
|
.nox/
|
|
.coverage
|
|
.coverage.*
|
|
.cache
|
|
nosetests.xml
|
|
coverage.xml
|
|
*.cover
|
|
*.py,cover
|
|
.hypothesis/
|
|
.pytest_cache/
|
|
|
|
# Virtual environments
|
|
venv/
|
|
env/
|
|
ENV/
|
|
env.bak/
|
|
venv.bak/
|
|
|
|
# Poetry
|
|
# 📝 Note: poetry.lock은 버전 제어에 포함해야 함
|
|
.cache/ # Poetry 캐시 디렉토리 (홈 디렉토리 사용 시)
|
|
.venv/ # Poetry가 프로젝트 내에 가상환경 생성 시
|
|
dist/ # Poetry build 결과물
|
|
.pytest_cache/
|
|
|
|
# Poetry 가상환경 (글로벌 위치에 생성되는 경우 - 일반적으로 Git에 포함되지 않음)
|
|
# ~/.cache/pypoetry/venvs/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# Environment variables
|
|
.env
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# Vector DB and ML Models
|
|
vector_db/
|
|
vectordb/ # 추가: 홈 디렉토리 사용 시 Vector DB 디렉토리
|
|
*.pkl
|
|
*.model
|
|
*.bin
|
|
embeddings/
|
|
checkpoints/
|
|
|
|
# AI/ML 캐시 디렉토리들 (홈 디렉토리 사용 시)
|
|
.cache/huggingface/
|
|
.cache/transformers/
|
|
.cache/sentence_transformers/
|
|
.cache/torch/
|
|
.cache/pypoetry/ # Poetry 캐시
|
|
|
|
# Data files
|
|
data/
|
|
*.csv
|
|
*.json
|
|
*.xlsx
|
|
*.parquet
|
|
|
|
# Temporary files
|
|
tmp/
|
|
temp/
|
|
*.tmp
|
|
*.temp
|
|
|
|
# Docker
|
|
.dockerignore
|
|
|
|
# Node.js (if applicable)
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Database
|
|
*.db
|
|
*.sqlite
|
|
*.sqlite3
|
|
|
|
# Backup files
|
|
*.bak
|
|
*.backup
|
|
|
|
# Jupyter Notebooks (추가)
|
|
.ipynb_checkpoints/
|
|
*.ipynb
|
|
|
|
# macOS specific (추가)
|
|
.AppleDouble
|
|
.LSOverride
|
|
|
|
# Linux specific (추가)
|
|
*~
|
|
|
|
# Windows specific (추가)
|
|
Desktop.ini
|
|
$RECYCLE.BIN/
|
|
*.cab
|
|
*.msi
|
|
*.msix
|
|
*.msm
|
|
*.msp
|
|
|
|
# Coverage reports (추가)
|
|
htmlcov/
|
|
.coverage.*
|
|
coverage.xml
|
|
|
|
# mypy
|
|
.mypy_cache/
|
|
.dmypy.json
|
|
dmypy.json
|
|
|
|
# Pyre type checker
|
|
.pyre/
|
|
|
|
# pytype static type analyzer
|
|
.pytype/
|
|
|
|
# Cython debug symbols
|
|
cython_debug/
|
|
|