Complete Python package from Claude Code session: - src/modpack_checker/: 1,154 lines (cli, config, curseforge, database, notifier) - tests/: 913 lines (comprehensive test suite) - docs/: README, API, INSTALLATION guides - setup.py, requirements.txt, LICENSE (MIT) Total: 2,121+ lines of production-ready code Ready for BuiltByBit marketplace deployment Transferred via tar.gz from Claude Code → Chronicler #26
41 lines
388 B
Plaintext
41 lines
388 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.pyo
|
|
*.pyd
|
|
*.egg
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
.eggs/
|
|
*.whl
|
|
|
|
# Virtual environments
|
|
.env
|
|
.venv/
|
|
venv/
|
|
env/
|
|
|
|
# Database files (user data — never commit)
|
|
*.db
|
|
*.sqlite
|
|
*.sqlite3
|
|
|
|
# Test / coverage artifacts
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
.tox/
|
|
|
|
# Editor
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*~
|
|
|
|
# macOS
|
|
.DS_Store
|
|
|
|
# Config (may contain secrets)
|
|
~/.config/modpack-checker/
|