defmodule DivoPostgres.MixProject do use Mix.Project def project do [ app: :divo_postgres, version: "0.1.1", elixir: "~> 1.8", start_permanent: Mix.env() == :prod, deps: deps(), docs: docs(), package: package(), description: description(), source_url: "https://github.com/jeffgrunewald/divo_postgres" ] end def application do [ extra_applications: [:logger] ] end defp deps do [ {:credo, "~> 1.1", only: :dev, runtime: false}, {:divo, "~> 1.1"}, {:ex_doc, "~> 0.21", only: :dev} ] end defp description do "A pre-configured postgres docker-compose stack definition for integration testing with the divo library." end defp package do [ maintainers: ["jeffgrunewald"], licenses: ["Apache 2.0"], links: %{"GitHub" => "https://github.com/jeffgrunewald/divo_postgres"} ] end defp docs do [ main: "readme", source_url: "https://github.com/jeffgrunewald/divo_postgres", extras: [ "README.md" ] ] end end