Skip to content

Latest commit

 

History

History
40 lines (25 loc) · 777 Bytes

File metadata and controls

40 lines (25 loc) · 777 Bytes

my-mandelbrot-py

A small Python application that generates an image of the Mandelbrot set.

Installation

Install from source (editable mode):

python -m pip install -e .[dev]

You can also publish to PyPI later using build/twine and install via pip install my-mandelbrot-py.

Usage

Generate a default image:

mandelbrot

Specify output file or dimensions:

mandelbrot -o output.png --width 1024 --height 768 --max-iter 2000

Development

Run tests with pytest:

pytest

Contributing

Contributions are welcome! Update the code, add tests, and open a pull request.
Follow Conventional Commits for commit messages to make publishing and changelog generation easier.