defmodule TruthTable.MixProject do use Mix.Project def project do [ app: :truth_table, name: "TruthTable", version: "0.1.0", elixir: "~> 1.8", description: "Generate truth tables in Elixir", source_url: "https://github.com/brettbeatty/truth_table", package: [ licenses: ["MIT"], links: %{"GitHub" => "https://github.com/brettbeatty/truth_table"} ], start_permanent: Mix.env() == :prod, deps: [ {:credo, "~> 1.0.0", only: [:dev, :test], runtime: false}, {:ex_doc, "~> 0.19", only: :dev} ] ] end def application do [ extra_applications: [:logger] ] end end