Current section
Files
Jump to
Current section
Files
mix.exs
defmodule ExBybit.MixProject do
use Mix.Project
def project do
[
app: :ex_bybit,
version: "0.1.0",
elixir: "~> 1.7",
package: package(),
start_permanent: Mix.env() == :prod,
description: description(),
deps: deps()
]
end
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
{:httpoison, "~> 1.0"},
{:jason, "~> 1.1"},
{:mapail, "~> 1.0"},
{:websockex, "~> 0.4"},
{:ex_doc, ">= 0.0.0", only: :dev},
{:dialyxir, "~> 1.0", only: :dev, runtime: false},
{:mix_test_watch, "~> 1.0", only: :dev, runtime: false},
{:mock, "~> 0.3", only: :test},
{:exvcr, "~> 0.10", only: [:dev, :test]},
{:ex_unit_notifier, "~> 0.1", only: :test},
{:excoveralls, "~> 0.1", only: :test}
]
end
defp description do
"Bybit API Client for Elixir"
end
defp package do
%{
licenses: ["MIT"],
maintainers: ["Alex Kwiatkowski"],
links: %{"GitHub" => "https://github.com/fremantle-capital/ex_bybit"}
}
end
end