defmodule Identicon.Mixfile do use Mix.Project def project do [app: :idicon, version: "0.1.0", elixir: "~> 1.5", build_embedded: Mix.env == :prod, start_permanent: Mix.env == :prod, description: description(), package: package(), source_url: "https://github.com/Softhatch/elixir-identicon/", deps: deps()] end # Configuration for the OTP application # # Type "mix help compile.app" for more information def application do # Specify extra applications you'll use from Erlang/Elixir [extra_applications: [:logger, :crypto]] end defp deps do [ {:ex_doc, ">= 0.0.0", only: :dev} ] end defp package do [ files: ["lib", "mix.exs", "README*", "LICENSE*"], licenses: ["MIT"], contributors: ["Softhatch"], maintainers: ["Softhatch"], links: %{"Github" => "https://github.com/softhatch/identicon"} ] end defp description do """ Used to generate identicons. """ end end