defmodule Xpotify.MixProject do use Mix.Project def project do [ app: :xpotify, name: "Xpotify", description: "Spotify API", package: package(), version: "0.1.0", elixir: "~> 1.15", start_permanent: Mix.env() == :prod, deps: deps() ] end # Run "mix help compile.app" to learn about applications. def application do [ mod: {Xpotify.Application, []}, extra_applications: [:logger] ] end # Run "mix help deps" to learn about dependencies. defp deps do [ {:tesla, "~> 1.11"}, {:jason, "~> 1.4"}, {:nebulex, "~> 2.5"} ] end def package() do [ licenses: ["MIT"], links: %{ "GitHub" => "https://github.com/fullplastic-alchemist/spotify_ex" } ] end end