defmodule Audiograms.MixProject do use Mix.Project def project do [ app: :audiograms, version: "0.3.1", elixir: "~> 1.10", package: package(), description: "Paquete de prueba de Audiograms", start_permanent: Mix.env() == :prod, deps: deps(), dialyzer: dialyzer() ] end # Run "mix help compile.app" to learn about applications. def application do [ extra_applications: [:logger, :crypto], mod: {Audiograms.Application, []} ] end # Run "mix help deps" to learn about dependencies. defp deps do [ # {:dep_from_hexpm, "~> 0.3.0"}, # {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"} {:dialyxir, "~> 1.0", only: [:dev], runtime: false} ] end defp dialyzer() do [ plt_core_path: "priv/plts", plt_file: {:no_warn, "priv/plts/dialyzer.plt"} ] end defp package() do [ licenses: ["Apache-2.0"], links: %{"GitHub" => "https://github.com/einerzg/audiograms"} ] end end