Packages

An Elixir library for working with the HTS221 sensor

Current section

Files

Jump to
hts221 mix.exs
Raw

mix.exs

defmodule HTS221.MixProject do
use Mix.Project
def project do
[
app: :hts221,
version: "0.1.0",
elixir: "~> 1.7",
start_permanent: Mix.env() == :prod,
deps: deps(),
docs: [extras: ["README.md"], main: "readme"],
package: package(),
description: description()
]
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.19", only: :dev, runtime: false},
{:dialyxir, "~> 0.5", only: [:dev], runtime: false},
{:circuits_i2c, "~> 0.1.0"}
]
end
defp package do
[
maintainers: ["Matt Ludwigs"],
licenses: ["Apache-2.0"],
links: %{"GitHub" => "https://github.com/mattludwigs/hts221"}
]
end
defp description() do
"An Elixir library for working with the HTS221 sensor"
end
end