Files
minimaximage/.gitignore
sakuradairong 993ee3ff7b feat: initial commit — image generation SDK + CLI + GUI
Includes:
- SDK: ImageModel, ImageRequest, ImageResponse (image-01 / image-01-live)
- CLI: argparse front-end with all API params + --print-json + --api-key
- GUI: tkinter desktop app with preview, multi-image nav, API key field
- Build: scripts/build.py → single-file exe via PyInstaller
- Multi-source API key resolution: CLI flag > config file > env > .env
- 74 tests, ruff clean
2026-06-22 02:34:29 +08:00

44 lines
389 B
Plaintext

# Bytecode / caches
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
# Virtual envs
.venv/
venv/
env/
ENV/
# Test / coverage
.coverage
.coverage.*
htmlcov/
.pytest_cache/
.mypy_cache/
.ruff_cache/
# Build artefacts
build/
dist/
*.spec
*.egg-info/
*.egg
# Local environment
.env
.env.local
.env.*.local
# IDE / OS
.DS_Store
Thumbs.db
.idea/
.vscode/
*.swp
*.swo
# Logs
*.log
pip-log.txt