Packages

Qoix is an Elixir implementation of the Quite OK Image format.

Current section

Files

Jump to
qoix mix.exs
Raw

mix.exs

defmodule Qoix.MixProject do
use Mix.Project
def project do
[
app: :qoix,
version: "0.1.0",
elixir: "~> 1.12",
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,
description: description(),
package: package(),
deps: deps(),
name: "Qoix",
source_url: "https://github.com/rbino/qoix"
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
# Specifies which paths to compile per environment.
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:stream_data, "~> 0.5", only: [:dev, :test]},
{:ex_doc, "~> 0.24", only: :dev, runtime: false}
]
end
defp description() do
"Qoix is an Elixir implementation of the Quite OK Image format."
end
defp package() do
[
licenses: ["Apache-2.0"],
links: %{"GitHub" => "https://github.com/rbino/qoix"}
]
end
end