Packages

AltworxBook provides function to interact with Altworx from Livebook notebooks.

Current section

Files

Jump to
Raw

mix.exs

defmodule AltworxBook.MixProject do
use Mix.Project
def project do
[
app: :altworx_book,
version: "0.4.0",
elixir: "~> 1.18",
start_permanent: Mix.env() == :prod,
description: description(),
package: package(),
deps: deps(),
docs: [
formatters: ["html"],
main: "readme",
extras: ["README.md", "CHANGELOG.md"] ++ Path.wildcard("notebooks/*.livemd")
]
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
defp description do
"""
AltworxBook provides function to interact with Altworx from Livebook notebooks.
"""
end
defp package do
[
name: :altworx_book,
licenses: [
"BSD-3-Clause"
],
links: []
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:runbox, "~> 19.0.0", hex: :altworx_runbox},
{:kino, "~> 0.16"},
{:jason, "~> 1.4"},
{:vega_lite, "~> 0.1.6"},
{:kino_vega_lite, "~> 0.1.7"},
{:ex_doc, "~> 0.38.0", only: :dev, runtime: false},
# development tools
{:credo, "~> 1.7", only: [:dev, :test], runtime: false},
{:credo_naming, "~> 2.1", only: [:dev, :test], runtime: false},
{:dialyxir, "~> 1.4", only: [:dev, :test], runtime: false}
]
end
end