amethyst/mix.exs

38 lines
825 B
Elixir
Raw Normal View History

defmodule Amethyst.MixProject do
use Mix.Project
def project do
[
app: :amethyst,
version: "0.1.0",
elixir: "~> 1.17",
start_permanent: Mix.env() == :prod,
2024-08-01 04:48:01 +02:00
deps: deps(),
name: "Amethyst",
source_url: "https://git.colon-three.com/kodi/amethyst",
docs: [
main: "readme",
extras: ["README.md", "LICENSE.md"]
]
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
2024-07-21 01:59:57 +02:00
extra_applications: [:logger, :public_key],
mod: {Amethyst.Application, []}
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
2024-07-08 16:57:49 +02:00
{:credo, "~> 1.7", only: [:dev, :test], runtime: false},
2024-08-01 04:48:01 +02:00
{:uuid, "~> 1.1"},
{:ex_doc, "~> 0.22", only: :dev, runtime: false}
]
end
end