Current section
Files
Jump to
Current section
Files
mix.exs
defmodule Julep.MixProject do
use Mix.Project
def project do
[
app: :julep,
version: "0.0.2",
elixir: "~> 1.17",
description: "Renamed to toddy. See https://hex.pm/packages/toddy",
package: package(),
source_url: "https://github.com/toddy-ui/toddy-elixir",
homepage_url: "https://github.com/toddy-ui/toddy-elixir",
deps: deps()
]
end
def application do
[extra_applications: [:logger]]
end
defp deps do
[
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false}
]
end
defp package do
[
name: "julep",
licenses: ["MIT"],
links: %{
"GitHub" => "https://github.com/toddy-ui/toddy-elixir",
"Toddy (new name)" => "https://hex.pm/packages/toddy"
},
files: ~w(lib mix.exs README.md LICENSE)
]
end
end