rebar.config

{project_plugins, [{rebar3_ex_doc, "0.2.8"}]}.
{erl_opts, [debug_info]}.
{deps, []}.

{pre_hooks, [{compile, "make -C native compile"}]}.

{post_hooks, [{clean, "make -C native clean"}]}.

{profiles, [{test, [{deps, [ {jsx, "3.1.0"}
                           , {erlexec, "1.18.11"}
                           ]}]}]}.

{shell, [ {apps, [erqwest]}]}.

{ex_doc, [ {extras, [<<"README.md">>, <<"LICENSE">>]}
         , {main, <<"readme">>}
         , {source_url, <<"https://github.com/dlesl/erqwest">>}
         ]}.

{hex, [{doc, #{provider => ex_doc}}]}.