defmodule Hellosign.MixProject do use Mix.Project def project do [ app: :hellosign_ex, version: "0.1.5", elixir: "~> 1.15", description: description(), start_permanent: Mix.env() == :prod, deps: deps(), package: package(), name: "hellosign_ex", source_url: source(), docs: docs() ] end # Run "mix help compile.app" to learn about applications. def application do [ mod: {Hellosign, []}, extra_applications: [:atomize_keys, :httpoison, :jason, :logger] ] end defp description do """ community-maintained hellosign Wrapper written in Elixir. """ end defp package do [ licenses: ["MIT"], exclude_patterns: ["./config/*"], links: %{ "GitHub" => source() }, maintainers: [ "aqdas95" ] ] end defp source, do: "https://github.com/aqdas95/hellosign_ex.git" defp docs do [ main: Hellosign, extras: ["readme.md", "LICENSE"] ] end # Run "mix help deps" to learn about dependencies. defp deps do [ {:atomize_keys, "~> 1.2"}, {:jason, "~> 1.4"}, {:httpoison, "~> 2.0"}, {:mock, "~> 0.3.6", only: [:test]}, {:mix_test_watch, "~> 1.0", only: [:dev, :test], runtime: false}, {:dialyxir, "~> 1.4", only: [:dev, :test], runtime: false}, {:ex_doc, "~> 0.31", only: :dev, runtime: false}, {:makeup_html, ">= 0.0.0", only: :dev, runtime: false} ] end end