Packages

Generates definitions of various things related to `{:tag, value}` tuples.

Current section

Files

Jump to
tagged mix.exs
Raw

mix.exs

defmodule Tagged.MixProject do
use Mix.Project
def project do
[
app: :tagged,
version: "0.1.0",
elixir: "~> 1.10",
start_permanent: Mix.env() == :prod,
deps: deps(),
package: package(),
description: description(),
test_coverage: [tool: ExCoveralls],
source_url: "https://github.com/notCalle/elixir-tagged.git"
]
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
[
{:dialyxir, "~> 1.0", only: :dev},
{:ex_doc, "~> 0.22", only: :dev},
{:excoveralls, "~> 0.12", only: :test}
]
end
defp description do
"""
Generates definitions of various things related to {:tag, value} tuples.
"""
end
defp package do
[
licenses: ["MIT"],
maintainers: ["Calle Englund"],
links: %{
"GitHub" => "https://github.com/notCalle/elixir-tagged"
}
]
end
end