defmodule Get402.MixProject do use Mix.Project def project do [ app: :get402, version: "0.0.1", elixir: "~> 1.12", description: "Client For Building Paid APIs Using Get402.com", name: "get402", package: [ name: "get402", links: %{ "Github" => "https://github.com/ProofOfWorkCompany/get402-elixir", "Homepage" => "https://get402.com", "Documentation" => "https://get402.com/docs.html" }, licenses: ["ISC"] ], source_url: "https://github.com/ProofOfWorkCompany/get402-elixir", homepage_url: "https://get402.com", start_permanent: Mix.env() == :prod, deps: deps() ] 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 [ {:curvy, "~> 0.3.0"}, {:ex_doc, ">= 0.0.0", only: :dev, runtime: false} # {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"} ] end end