Current section
Files
Jump to
Current section
Files
altworx_book
mix.exs
mix.exs
defmodule AltworxBook.MixProject do
use Mix.Project
def project do
[
app: :altworx_book,
version: "0.3.0",
elixir: "~> 1.14",
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, "~> 4.0.0", hex: :altworx_runbox},
{:kino, "~> 0.10.0"},
{:jason, "~> 1.4"},
{:vega_lite, "~> 0.1.6"},
{:kino_vega_lite, "~> 0.1.7"},
{:ex_doc, "~> 0.28.0", only: :dev, runtime: false},
# development tools
{:credo, "~> 1.6.3", only: [:dev, :test], runtime: false},
{:credo_naming, "~> 1.0.0", only: [:dev, :test], runtime: false},
{:dialyxir, "~> 1.1.0", only: [:dev, :test], runtime: false}
]
end
end