Packages

Subtitles generation and parsing for the Membrane Framework

Current section

Files

Jump to

mix.exs

defmodule Membrane.Subtitles.MixProject do
use Mix.Project
def project do
[
app: :membrane_subtitles_plugin,
version: "0.1.1",
elixir: "~> 1.18",
start_permanent: Mix.env() == :prod,
deps: deps(),
source_url: "https://github.com/kim-company/membrane_subtitles_plugin",
name: "Membrane Subtitles Plugin",
description: description(),
package: package()
]
end
def cli do
[preferred_envs: ["mneme.test": :test, "mneme.watch": :test]]
end
def description do
"""
Subtitles generation and parsing for the Membrane Framework
"""
end
def 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_subtitles_plugin"}
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:membrane_core, "~> 1.1"},
{:membrane_text_format, "~> 1.0"},
{:kim_subtitle, "~> 0.1"},
{:membrane_file_plugin, ">= 0.0.0", only: :test},
{:mneme, ">= 0.0.0", only: :test},
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false}
]
end
end