defmodule Pidgeon.MixProject do use Mix.Project def project do [ app: :pidgeon, name: "Pidgeon", version: "0.0.0", elixir: "~> 1.8", description: "A static site generator in Elixir.", source_url: "https://github.com/brettbeatty/pidgeon", package: [ licenses: ["MIT"], links: %{"GitHub" => "https://github.com/brettbeatty/pidgeon"} ], start_permanent: Mix.env() == :prod, deps: [ {:credo, "~> 1.0.0", only: [:dev, :test], runtime: false}, {:dialyxir, "~> 0.5", only: [:dev, :test]}, {:ex_doc, "~> 0.19", only: :dev} ], dialyzer: [ plt_core_path: "_core_plt" ] ] end def application do [ extra_applications: [:logger] ] end end