A simple Python package to generate README files for projects automatically.
- Automatically generates README files with customizable content.
pip install readme_genfrom readme_gen import generate_readme
generate_readme(
project_name="My Awesome Project",
description="This project is awesome because...",
installation_instructions="pip install -r requirements.txt",
usage_instructions="python main.py",
license_info="MIT License"
)MIT License