Packages

Elixir HTTP/Websockets client library for official Steemit API and standard steemd JSONRPC interface. Includes module for pseudo realtime streaming of block, transaction and operation events.

Current section

Files

Jump to
steemex mix.exs
Raw

mix.exs

defmodule Steemex.Mixfile do
use Mix.Project
def project do
[app: :steemex,
version: "0.3.1",
elixir: "~> 1.3",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
deps: deps(),
description: description(),
package: package()]
end
# Configuration for the OTP application
#
# Type "mix help compile.app" for more information
def application do
[applications: [:logger]]
end
# Dependencies can be Hex packages:
#
# {:mydep, "~> 0.3.0"}
#
# Or git/path repositories:
#
# {:mydep, git: "https://github.com/elixir-lang/mydep.git", tag: "0.1.0"}
#
# Type "mix help deps" for more examples and options
defp deps do
[
{:websocket_client, github: "sanmiguel/websocket_client" },
{:poison, "~> 2.0"},
{:credo, ">= 0.0.0", only: [:test, :dev]},
{:ex_doc, ">= 0.0.0", only: :dev},
{:exconstructor, ">= 0.0.0"}
]
end
defp description do
"""
Elixir websockets library and utilities for Steem blockchain
"""
end
defp package do
[
name: :steemex,
files: ["lib", "priv", "mix.exs", "README*", "LICENSE*"],
maintainers: ["ontofractal"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/cyberpunk-ventures/steemex"}
]
end
end