Packages

Client For Building Paid APIs Using Get402.com

Current section

Files

Jump to
get402 mix.exs
Raw

mix.exs

defmodule Get402.MixProject do
use Mix.Project
def project do
[
app: :get402,
version: "0.0.3",
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"
},
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