liminspace / django-mjml

The simplest way to use MJML in Django templates.
MIT License
263 stars 32 forks source link

fix: add requests to setup install_requires. #103

Closed chrisguox closed 4 years ago

chrisguox commented 4 years ago

The package requests is not declared in install_requires in setup.py.

it would run into an ImportError if user didn't have requests.

liminspace commented 4 years ago

@chrisguox, thanks for your feedback! Since requests is required only for httpserver mode from now you can use pip install django-mjml[requests] to install django-mjml with requests package.