- Fix test imports to use correct package paths (mcrentcast instead of src.mcrentcast) - Rename TestReporter to ReportGenerator to avoid pytest collection warnings - Add build exclusions to prevent unwanted files in source distribution - Add temporary refactoring docs to .gitignore Build is now clean and ready for PyPI publication. All core functionality verified working.
77 lines
694 B
Plaintext
77 lines
694 B
Plaintext
# Environment files
|
|
.env
|
|
.env.local
|
|
.env.production
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
env/
|
|
venv/
|
|
.venv/
|
|
ENV/
|
|
env.bak/
|
|
venv.bak/
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
.tox/
|
|
dist/
|
|
build/
|
|
*.egg-info/
|
|
|
|
# UV
|
|
.uv/
|
|
uv.lock
|
|
|
|
# Database
|
|
*.db
|
|
*.sqlite
|
|
*.sqlite3
|
|
data/
|
|
|
|
# Cache
|
|
cache/
|
|
*.cache
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Docker
|
|
.docker/
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# Test reports
|
|
reports/
|
|
test-results/
|
|
|
|
# Node.js (for frontend)
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
.npm
|
|
.yarn/
|
|
|
|
# Frontend build
|
|
frontend/dist/
|
|
frontend/build/
|
|
frontend/.astro/
|
|
|
|
# Temporary refactoring documentation
|
|
REFACTORING_*.md
|
|
TOOLS_REFACTORING_CHECKLIST.md |