Packages

Library that enables programs to write Data Matrix barcodes of the modern ECC200 variety.

Current section

Files

Jump to
datamatrix mix.exs
Raw

mix.exs

defmodule DataMatrix.MixProject do
use Mix.Project
def project do
[
app: :datamatrix,
version: "0.1.2",
elixir: "~> 1.9",
start_permanent: Mix.env() == :prod,
deps: deps(),
description: description(),
package: package()
]
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
[
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false}
]
end
defp description do
"Library that enables programs to write Data Matrix barcodes of the modern ECC200 variety."
end
defp package do
[
files: ~w(lib mix.exs README.md),
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/0x8b/datamatrix"}
]
end
end