mirror of
https://github.com/heavyai/heavyai-charting.git
synced 2026-01-25 14:57:45 +00:00
25 lines
433 B
Elixir
25 lines
433 B
Elixir
defmodule Test.Mixfile do
|
|
use Mix.Project
|
|
|
|
def project do
|
|
[app: :test,
|
|
version: "0.1.0",
|
|
elixir: "~> 1.4",
|
|
build_embedded: Mix.env == :prod,
|
|
start_permanent: Mix.env == :prod,
|
|
deps: deps()]
|
|
end
|
|
|
|
def application do
|
|
[extra_applications: [:logger]]
|
|
end
|
|
|
|
defp deps do
|
|
[
|
|
{:hound, "~> 1.0"},
|
|
{:beagle, "~> 0.1.0"},
|
|
{:whippet, github: "mrblueblue/whippet"}
|
|
]
|
|
end
|
|
end
|