Current section

Files

Jump to
Raw

mix.exs

defmodule Binancex.MixProject do
use Mix.Project
def project do
[
app: :dwarves_binancex,
version: "0.1.18",
elixir: "~> 1.12",
start_permanent: Mix.env() == :prod,
description: description(),
package: package(),
deps: deps(),
preferred_cli_env: [
vcr: :test,
"vcr.delete": :test,
"vcr.check": :test,
"vcr.show": :test
]
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
mod: {Binance.Supervisor, []},
extra_applications: [:logger]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:httpoison, "~> 1.8"},
{:poison, "~> 4.0.0"},
{:exconstructor, "~> 1.2.4"},
{:ex_doc, ">= 0.0.0", only: :dev},
{:mix_test_watch, "~> 1.0", only: :dev, runtime: false},
{:exvcr, "~> 0.13.0", only: [:dev, :test]}
]
end
defp description do
"""
Elixir wrapper for the Binance public API
"""
end
defp package do
[
name: :dwarves_binancex,
files: ["lib", "config", "mix.exs", "README*", "LICENSE*"],
maintainers: ["Dwarves"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/dwarvesf/ex_binance"}
]
end
end