defmodule PhaseDB.Client.Mixfile do use Mix.Project def project do [app: :phasedb_client, version: "0.0.1", elixir: "~> 1.2", maintainers: [ "James Harton " ], licenses: [ "MIT" ], links: %{ "GitHub" => "https://github.com/jamesotron/phasedb_server", "Docs" => "https://hexdocs.pm/phasedb_server" }, description: "A real-time time series database - command line client.", build_embedded: Mix.env == :prod, start_permanent: Mix.env == :prod, deps: deps] end # Configuration for the OTP application # # Type "mix help compile.app" for more information def application do [applications: [:logger, :gproc, :calendar, :crypto, :ssl, :websocket_client], mod: {PhaseDB.Client, []}] 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 [ {:calendar, "~> 0.12.4"}, {:poison, "~> 2.1.0"}, {:websocket_client, "~> 1.1"}, {:table_rex, "~> 0.8.0"}, #{:gproc, "~> 0.5.0"}, {:gproc, github: "uwiger/gproc", tag: "0.6"}, #{:phasedb, path: "../phasedb/"}, {:phasedb, "~> 0.0.2"}, {:espec, "~> 0.8.15", only: :test}, {:faker, "~> 0.6.0", only: :test}, {:ex_doc, "~> 0.11.4", only: :dev} ] end end