1%% -*- erlang -*-
2%% Copyright (c) 2013-2016 Robert Virding
3%%
4%% Licensed under the Apache License, Version 2.0 (the "License");
5%% you may not use this file except in compliance with the License.
6%% You may obtain a copy of the License at
7%%
8%%     http://www.apache.org/licenses/LICENSE-2.0
9%%
10%% Unless required by applicable law or agreed to in writing, software
11%% distributed under the License is distributed on an "AS IS" BASIS,
12%% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13%% See the License for the specific language governing permissions and
14%% limitations under the License.
15
16{application, lfe,
17 [{description, "Lisp Flavored Erlang (LFE)"},
18  {vsn, "1.3"},
19  {modules,[cl,clj,lfe,lfe_bits,lfe_codegen,lfe_comp,lfe_doc,
20            lfe_edlin_expand,lfe_env,lfe_eval,lfe_gen,lfe_init,lfe_io,
21            lfe_io_format,lfe_io_pretty,lfe_io_write,lfe_lib,
22            lfe_lint,lfe_macro,lfe_macro_export,lfe_macro_include,
23            lfe_macro_record,lfe_ms,lfe_parse,lfe_pmod,lfe_qlc,
24            lfe_scan,lfe_shell,lfe_trans,lfescript]},
25  {registered, []},
26  {applications, [kernel,stdlib,compiler]},
27  {maintainers, ["Robert Virding"]},
28  {licenses, ["Apache"]},
29  {links, [{"Github", "https://github.com/rvirding/lfe"},
30           {"Main site", "http://lfe.io/"},
31           {"Documentation", "http://docs.lfe.io/"}]},
32  {files, ["src", "include", "bin", "rebar.*", "README.md", "LICENSE"]}
33 ]}.
34