Packages

Handwave your problems away with LLMs.

Current section

Files

Jump to
handwave mix.exs
Raw

mix.exs

defmodule Handwave.MixProject do
use Mix.Project
@version "0.1.0"
@source_url "https://github.com/martosaur/handwave"
def project do
[
app: :handwave,
version: @version,
elixir: "~> 1.15",
start_permanent: Mix.env() == :prod,
deps: deps(),
elixirc_paths: elixirc_paths(Mix.env()),
docs: docs(),
package: package()
]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
defp package do
[
description: "Handwave your problems away with LLMs.",
licenses: ["MIT"],
links: %{
"Changelog" => "https://hexdocs.pm/handwave/changelog.html",
"GitHub" => @source_url
}
]
end
defp docs do
[
main: "readme",
source_url: @source_url,
source_ref: "v#{@version}",
extras: [
"README.md"
]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:instructor_lite, "~> 1.1 and >= 1.1.2"},
{:req, "~> 0.5"},
{:nimble_options, "~> 1.1"},
{:ex_doc, "~> 0.39", only: :dev, runtime: false},
{:mox, "~> 1.2", only: :test}
]
end
end