Current section
Files
Jump to
Current section
Files
mix.exs
defmodule Poloniex.Mixfile do
use Mix.Project
def project do
[app: :poloniex,
version: "0.0.2",
elixir: "~> 1.2",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
description: description,
package: package,
deps: deps]
end
def application do
[applications: [:logger, :httpoison]]
end
defp deps do
[
{:poison, "~> 1.5"},
{:httpoison, "~> 0.8"},
{:credo, "~> 0.3", only: [:test,:dev]},
{:ex_doc, ">= 0.0.0", only: [:dev]}
]
end
defp description do
"""
WIP
Poloniex API wrapper for Elixir. Provides access to market data including trading pairs between ETH, BTC, DOGE, LTC and others.
"""
end
defp package do
[# These are the default files included in the package
files: ["lib", "priv", "mix.exs", "README*", "readme*", "LICENSE*", "license*"],
maintainers: ["Vitalik Daniuk"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/cyberpunk-ventures/poloniex_ex"}]
end
end