-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathmix.exs
More file actions
62 lines (56 loc) · 1.66 KB
/
mix.exs
File metadata and controls
62 lines (56 loc) · 1.66 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
defmodule Membrane.HLS.MixProject do
use Mix.Project
def project do
[
app: :membrane_hls_plugin,
version: "3.0.9",
elixir: "~> 1.13",
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,
source_url: "https://github.com/kim-company/membrane_hls_plugin",
name: "Membrane HLS Plugin",
description: description(),
package: package(),
deps: deps()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
mod: {Membrane.HLS.Application, []},
extra_applications: [:logger]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:kim_hls, "~> 3.0"},
{:membrane_core, "~> 1.0"},
{:membrane_file_plugin, "~> 0.17"},
{:membrane_mp4_plugin, "~> 0.35"},
{:membrane_aac_plugin, "~> 0.18"},
{:membrane_h26x_plugin, "~> 0.10"},
{:membrane_text_format, "~> 1.0"},
{:membrane_webvtt_plugin, "~> 3.0"},
{:membrane_mpeg_ts_plugin, "~> 2.0"},
{:membrane_flv_plugin, "~> 0.13", only: :test},
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false},
{:credo, "~> 1.7", only: [:dev, :test], runtime: false}
]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_env), do: ["lib"]
defp package do
[
maintainers: ["KIM Keep In Mind"],
files: ~w(lib mix.exs README.md LICENSE),
licenses: ["Apache-2.0"],
links: %{"GitHub" => "https://github.com/kim-company/membrane_hls_plugin"}
]
end
defp description do
"""
Adaptive live streaming (HLS) plugin for the Membrane Framework.
"""
end
end