defmodule HubIdentityElixir.MixProject do use Mix.Project def project do [ app: :hub_identity_elixir, version: "0.1.0", elixir: "~> 1.11", build_embedded: Mix.env() == :prod, start_permanent: Mix.env() == :prod, deps: deps(), description: description(), package: package(), name: "HubIdentityElixir", source_url: "https://github.com/ErinHivelociy/hub_identity_elixir" ] end # Run "mix help compile.app" to learn about applications. def application do [ extra_applications: [:logger] ] end # Run "mix help deps" to learn about dependencies. defp deps do [ {:ex_doc, "~> 0.19", only: [:dev]}, {:httpoison, "~> 1.6"}, {:jason, "~> 1.1"}, {:phoenix, "~> 1.5.7"}, {:phoenix_html, "~> 2.11"} ] end defp description do "An elixir client library for HubIdentity" end defp package do [ maintainers: ["Erin Boeger"], licenses: ["Apache 2.0"], links: %{"GitHub" => "https://github.com/ErinHivelociy/hub_identity_elixir"} ] end end