Packages

Match language tags to negotiate interface languages

Current section

Files

Jump to
Raw

mix.exs

defmodule Langtagmatcher.MixProject do
use Mix.Project
def project do
[
app: :langtagmatcher,
version: "0.1.0",
description: "Match language tags to negotiate interface languages",
elixir: "~> 1.10",
start_permanent: Mix.env() == :prod,
deps: deps(),
package: [
files: ["lib", "test", "mix.exs", "README.md"],
licenses: ["GPL-3.0-or-later"],
links: %{"Lily islands" => "https://lily-is.land/infra/langtag-matcher"},
maintainers: []
]
]
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
[
{:lang_tags, "~> 0.1.0"},
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false}
]
end
end