-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathrebar.config
More file actions
100 lines (92 loc) · 2.88 KB
/
rebar.config
File metadata and controls
100 lines (92 loc) · 2.88 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{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/inspiration.md">>,
<<"docs/migration.md">>,
<<"docs/getting-started.md">>,
<<"docs/ai-integration.md">>,
<<"docs/type-conversion.md">>,
<<"docs/context-affinity.md">>,
<<"docs/pools.md">>,
<<"docs/imports.md">>,
<<"docs/channel.md">>,
<<"docs/buffer.md">>,
<<"docs/streaming.md">>,
<<"docs/memory.md">>,
<<"docs/shared-dict.md">>,
<<"docs/logging.md">>,
<<"docs/scalability.md">>,
<<"docs/threading.md">>,
<<"docs/asyncio.md">>,
<<"docs/reactor.md">>,
<<"docs/process-bound-envs.md">>,
<<"docs/security.md">>,
<<"docs/distributed.md">>,
<<"docs/testing-free-threading.md">>,
<<"docs/preload.md">>,
<<"docs/owngil_internals.md">>,
<<"docs/event_loop_architecture.md">>
]},
{groups_for_extras, [
{<<"Guides">>, [
<<"docs/inspiration.md">>,
<<"docs/migration.md">>,
<<"docs/getting-started.md">>,
<<"docs/ai-integration.md">>,
<<"docs/type-conversion.md">>,
<<"docs/context-affinity.md">>,
<<"docs/pools.md">>,
<<"docs/imports.md">>,
<<"docs/channel.md">>,
<<"docs/buffer.md">>,
<<"docs/streaming.md">>,
<<"docs/memory.md">>,
<<"docs/shared-dict.md">>,
<<"docs/logging.md">>
]},
{<<"Advanced">>, [
<<"docs/scalability.md">>,
<<"docs/threading.md">>,
<<"docs/asyncio.md">>,
<<"docs/reactor.md">>,
<<"docs/process-bound-envs.md">>,
<<"docs/security.md">>,
<<"docs/distributed.md">>,
<<"docs/testing-free-threading.md">>
]},
{<<"Internals">>, [
<<"docs/preload.md">>,
<<"docs/owngil_internals.md">>,
<<"docs/event_loop_architecture.md">>
]}
]}
]}.