Packages

Elixir package for communicating with 32-bit Numato GPIO module

Current section

Files

Jump to
Raw

mix.exs

defmodule NumatoGpio.MixProject do
use Mix.Project
def project do
[
app: :numato_gpio,
version: "0.1.1",
elixir: "~> 1.10",
start_permanent: Mix.env() == :prod,
deps: deps(),
description: description(),
package: package(),
source_url: "https://github.com/kmiecikt/numato_gpio"
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:gen_stage, "~> 1.0.0"},
{:circuits_uart, "~> 1.3"},
{:ex_doc, "~> 0.14", only: :dev, runtime: false}
]
end
defp description() do
"Elixir package for communicating with 32-bit Numato GPIO module"
end
defp package() do
[
licenses: ["Apache-2.0"],
links: %{"GitHub" => "https://github.com/kmiecikt/numato_gpio"}
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
end