defmodule ConfigTuples.MixProject do use Mix.Project @version "0.2.6" def project do [ app: :config_tuples, version: @version, elixir: "~> 1.6", package: package(), description: description(), source_url: "https://github.com/rockneurotiko/config_tuples", start_permanent: Mix.env() == :prod, deps: deps(), test_coverage: [tool: ExCoveralls], docs: [ main: "readme", extras: ["README.md"] ] ] end def application do [] end defp package do [ maintainers: ["Miguel Garcia / Rock Neurotiko"], licenses: ["Beerware"], links: %{"GitHub" => "https://github.com/rockneurotiko/config_tuples"} ] end defp description do "ConfigTuples provides a distillery's config provider that replace config tuples (e.g `{:system, value}`) to their expected runtime value." end defp deps do [ {:distillery, "~> 2.0", runtime: false}, # Testing & docs: {:excoveralls, "~> 0.8", only: :test}, {:ex_doc, "~> 0.19.0", only: :dev}, {:inch_ex, "~> 2.0", only: :docs} ] end end