Current section
Files
Jump to
Current section
Files
mix.exs
defmodule VegaLite.MixProject do
use Mix.Project
@version "0.1.10"
@description "Elixir bindings to Vega-Lite"
def project do
[
app: :vega_lite,
version: @version,
description: @description,
name: "VegaLite",
elixir: "~> 1.12",
deps: deps(),
docs: docs(),
package: package(),
# Modules used by VegaLite.WxViewer if available
xref: [exclude: [:wx, :wx_object, :wxFrame, :wxWebView]]
]
end
def application do
[]
end
defp deps do
[
{:jason, "~> 1.2", only: [:dev, :test]},
{:table, "~> 0.1.0"},
{:ex_doc, "~> 0.24", only: :dev, runtime: false}
]
end
defp docs do
[
main: "VegaLite",
source_url: "https://github.com/livebook-dev/vega_lite",
source_ref: "v#{@version}"
]
end
def package do
[
licenses: ["Apache-2.0"],
links: %{
"GitHub" => "https://github.com/livebook-dev/vega_lite"
}
]
end
end