A Python toolkit for generating the Armageddon Treats business plan documents and financial projections.
armageddon_treats/
├── styles/
│ └── doc_styles.py # Shared Word document styling helpers
└── generators/
├── audit.py # Business plan audit document
├── works_cited.py # Works cited / references document
├── workbook.py # Financial projections Excel workbook
└── modules/
├── module_1.py # Pre-Launch Timeline & Master Checklist
├── module_2.py # Regulatory & Permit Compliance Guide
├── module_3.py # Day-to-Day Operations Manual
├── module_4.py # Brand Identity & Marketing Playbook
└── module_5.py # Year 1-2 Growth Roadmap & Scaling Plan
pip install -r requirements.txtGenerate all documents at once:
python main.pyOr generate individual documents:
python -m armageddon_treats.generators.audit
python -m armageddon_treats.generators.works_cited
python -m armageddon_treats.generators.workbook
python -m armageddon_treats.generators.modules.module_1
# ... etc.Generated files are saved to the output/ directory.
- python-docx — Word document generation
- openpyxl — Excel workbook generation