defmodule ShirlyClient.MixProject do use Mix.Project def project do [ app: :shirly_client, version: "0.1.0", elixir: "~> 1.15", start_permanent: Mix.env() == :prod, description: "Elixir client for interacting with the Shirly scheduler API", package: package(), deps: deps() ] end def application do [ extra_applications: [:logger, :crypto], mod: {ShirlyClient.Application, []} ] end defp deps do [ {:finch, "~> 0.16"}, {:req, "~> 0.4"}, {:jason, "~> 1.4"}, {:ex_doc, ">= 0.0.0", only: :dev, runtime: false} ] end defp package do [ licenses: ["MIT"], files: ["lib", "mix.exs", "README.md", "LICENSE.txt"], links: %{ "Homepage" => "https://example.com/shirly", "Repository" => "https://example.com/shirly/repo" } ] end end