Current section

Files

Jump to
plotex mix.exs
Raw

mix.exs

defmodule Plotex.MixProject do
use Mix.Project
def project do
[
app: :plotex,
version: "0.2.4",
elixir: "~> 1.6",
start_permanent: Mix.env() == :prod,
deps: deps(),
description: description(),
package: package()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
defp description do
"""
Extensible plotting library and core plotting routines written in pure Elixir.
"""
end
defp package do
[
files: ["lib", "mix.exs", "README*", "LICENSE*", "test"],
maintainers: ["Jaremy Creechley"],
licenses: ["Apache-2.0"],
links: %{"GitHub" => "https://github.com/elcritch/plotex"}
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:ex_doc, ">= 0.0.0", only: :dev},
{:phoenix_html, "~> 2.13", optional: true},
{:ex_cldr_dates_times, "~> 2.2", optional: true},
{:tzdata, "~> 1.0", optional: true},
{:calendar, "~> 1.0.0", optional: true},
{:phoenix_live_view, "~> 0.4.1", optional: true}
# {:dep_from_hexpm, "~> 0.3.0"},
# {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"}
]
end
end