-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy patherlang_python.app.src
More file actions
30 lines (30 loc) · 781 Bytes
/
erlang_python.app.src
File metadata and controls
30 lines (30 loc) · 781 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
29
30
{application, erlang_python, [
{description, "Execute Python applications from Erlang using dirty NIFs"},
{vsn, "2.3.1"},
{registered, [py_pool]},
{mod, {erlang_python_app, []}},
{applications, [
kernel,
stdlib
]},
{env, [
{num_workers, 4},
{python_path, ""},
{worker_timeout, 30000}
]},
{modules, []},
{licenses, ["Apache-2.0"]},
{links, [{"GitHub", "https://github.com/benoitc/erlang-python"}]},
{files, ["rebar.config",
"do_cmake.sh",
"do_build.sh",
"README.md",
"LICENSE",
"CHANGELOG.md",
"src",
"c_src",
"priv",
"docs",
"examples",
"test"]}
]}.