defmodule UeberauthSpotify.Mixfile do use Mix.Project def project do [app: :ueberauth_spotify, version: "0.0.2", name: "Ueberauth Spotify Strategy", package: package, elixir: "~> 1.1", build_embedded: Mix.env == :prod, start_permanent: Mix.env == :prod, source_url: "https://github.com/markusherzog/ueberauth_spotify", homepage_url: "https://github.com/markusherzog/ueberauth_spotify", description: description, deps: deps, docs: docs] end def application do [applications: [:logger, :oauth2, :ueberauth]] end defp deps do [{:ueberauth, "~> 0.2"}, {:oauth2, "~> 0.5"}, {:ex_doc, "~> 0.1", only: :dev}, {:earmark, ">= 0.0.0", only: :dev}] end defp docs do [extras: docs_extras, main: "extra-readme"] end defp docs_extras do ["README.md"] end defp description do "An Uberauth strategy for Spotify authentication." end defp package do [files: ["lib", "mix.exs", "README.md", "LICENSE", ".gitignore"], maintainers: ["Markus Herzog"], licenses: ["MIT"], links: %{"GitHub": "https://github.com/markusherzog/ueberauth_spotify"}] end end