{erl_opts, [debug_info,
            warnings_as_errors]}.
{deps, []}.
{xrl_opts, []}.
{yrl_opts, []}.

{shell, [
  % {config, "config/sys.config"},
    {apps, [routing_tree]}
]}.

{xref_checks,[
  undefined_function_calls,
  undefined_functions,
  locals_not_used,
  deprecated_function_calls,
  deprecated_functions
 ]}.

{project_plugins, [rebar3_proper, rebar3_ex_doc]}.

{hex, [{doc, ex_doc}]}.

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

{profiles, [{test, [{erl_opts, [nowarn_export_all]},
                    {deps, [proper]}
                   ]}
           ]
}.