{erl_opts, [debug_info]}.
{deps, []}.

{project_plugins, [rebar3_ex_doc]}.

{hex, [
    {doc, ex_doc},
    {metadata, [
        {description, <<"Bencoding encoder/decoder for Erlang — implements the serialization format specified in BEP 3 (BitTorrent)">>},
        {licenses, [<<"MIT">>]},
        {links, [
            {<<"GitHub">>, <<"https://github.com/ratopi/bencoding">>},
            {<<"BEP 3">>, <<"https://www.bittorrent.org/beps/bep_0003.html">>}
        ]}
    ]}
]}.

{ex_doc, [
    {extras, [<<"README.md">>, <<"CHANGELOG.md">>, <<"LICENSE">>]},
    {main, <<"README.md">>},
    {homepage_url, <<"https://github.com/ratopi/bencoding">>},
    {source_url, <<"https://github.com/ratopi/bencoding">>}
]}.

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