-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrebar.config
More file actions
28 lines (24 loc) · 804 Bytes
/
rebar.config
File metadata and controls
28 lines (24 loc) · 804 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{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]}
]}.