-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrebar.config
More file actions
72 lines (64 loc) · 1.92 KB
/
rebar.config
File metadata and controls
72 lines (64 loc) · 1.92 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{erl_opts, [debug_info]}.
{xref_checks, [
undefined_function_calls,
undefined_functions,
locals_not_used,
deprecated_function_calls,
deprecated_functions
]}.
{deps, []}.
{pre_hooks, [
{clean, "rm -f priv/*.so"},
{clean, "rm -rf _build/cmake"},
{"(linux|darwin|solaris)", compile, "./do_cmake.sh"},
{"(freebsd|netbsd|openbsd)", compile, "./do_cmake.sh"}
]}.
{post_hooks, [
{"(linux|darwin|solaris)", compile, "./do_build.sh"},
{"(freebsd|netbsd|openbsd)", compile, "./do_build.sh"}
]}.
{shell, [
{apps, [erlang_python]}
]}.
{project_plugins, [rebar3_ex_doc]}.
{hex, [
{doc, ex_doc},
{files, ["src", "include", "priv", "c_src", "CMakeLists.txt", "do_cmake.sh", "do_build.sh", "rebar.config", "rebar.lock", "README.md", "LICENSE"]}
]}.
{ex_doc, [
{source_url, <<"https://github.com/benoitc/erlang-python">>},
{main, <<"readme">>},
{extras, [
<<"README.md">>,
<<"docs/getting-started.md">>,
<<"docs/ai-integration.md">>,
<<"docs/type-conversion.md">>,
<<"docs/context-affinity.md">>,
<<"docs/streaming.md">>,
<<"docs/memory.md">>,
<<"docs/logging.md">>,
<<"docs/scalability.md">>,
<<"docs/threading.md">>,
<<"docs/asyncio.md">>,
<<"docs/web-frameworks.md">>,
<<"docs/testing-free-threading.md">>
]},
{groups_for_extras, [
{<<"Guides">>, [
<<"docs/getting-started.md">>,
<<"docs/ai-integration.md">>,
<<"docs/type-conversion.md">>,
<<"docs/context-affinity.md">>,
<<"docs/streaming.md">>,
<<"docs/memory.md">>,
<<"docs/logging.md">>
]},
{<<"Advanced">>, [
<<"docs/scalability.md">>,
<<"docs/threading.md">>,
<<"docs/asyncio.md">>,
<<"docs/web-frameworks.md">>,
<<"docs/testing-free-threading.md">>
]}
]}
]}.