defmodule Mnemonex.Mixfile do use Mix.Project def project do [app: :mnemonex, version: "1.1.4", elixir: "~> 1.4", name: "Mnemonex", source_url: "https://github.com/mwmiller/mnemonex", build_embedded: Mix.env == :prod, start_permanent: Mix.env == :prod, description: description(), package: package(), deps: deps()] end def application do [applications: [:logger], mod: {Mnemonex, []}] end defp deps do [ {:the_fuzz, "~> 0.3"}, {:earmark, "~> 1.0", only: :dev}, {:ex_doc, "~> 0.14", only: :dev}, ] end defp description do """ mnemonicode encoder/decoder """ end defp package do [ files: ["lib", "mix.exs", "README*", "LICENSE*", ], maintainers: ["Matt Miller"], licenses: ["MIT"], links: %{"GitHub" => "https://github.com/mwmiller/mnemonex", } ] end end