Stylus compiler for Gears. This package already includes the Stylus source code for you, so you don't need to worry about installing it yourself.
Bundled Stylus version: 0.45.1
Install gears-stylus
with pip:
$ pip install gears-stylus
gears-stylus
requires node.js to be installed in your system.
Add gears_stylus.StylusCompiler
to environment
's compilers registry:
from gears_stylus import StylusCompiler environment.compilers.register('.styl', StylusCompiler.as_handler())
If you use Gears in your Django project, add this code to its settings:
GEARS_COMPILERS = { '.styl': 'gears_stylus.StylusCompiler', }