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
16 lines
244 B
INI
16 lines
244 B
INI
[tool:pytest]
|
|
testpaths = tests
|
|
pythonpath = src
|
|
addopts = --tb=short -q
|
|
|
|
[coverage:run]
|
|
source = modpack_checker
|
|
|
|
[coverage:report]
|
|
show_missing = True
|
|
skip_covered = False
|
|
|
|
[flake8]
|
|
max-line-length = 100
|
|
exclude = .git,__pycache__,build,dist
|