Packages
first_last_frame
1767774.631.530
Professional Elixir integration for first-last-frame. Provides utilities for building links and integrating with https://supermaker.ai/video/first-last-frame/.
Current section
Files
Jump to
Current section
Files
first_last_frame
mix.exs
mix.exs
defmodule FirstLastFrame.MixProject do
use Mix.Project
@version "1767774.631.530"
@source_url "https://github.com/qy-upup/first-last-frame"
def project do
[
app: :first_last_frame,
version: @version,
elixir: "~> 1.14",
start_permanent: Mix.env() == :prod,
deps: deps(),
description: description(),
package: package(),
source_url: @source_url,
homepage_url: "https://supermaker.ai/video/first-last-frame/",
docs: docs()
]
end
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
{:ex_doc, "~> 0.31", only: :dev, runtime: false}
]
end
defp description do
"""
Professional Elixir integration for first-last-frame.
Provides utilities for building links and integrating with https://supermaker.ai/video/first-last-frame/.
"""
end
defp package do
[
name: "first_last_frame",
files: ~w(lib .formatter.exs mix.exs README.md LICENSE),
licenses: ["MIT"],
links: %{
"GitHub" => @source_url,
"Homepage" => "https://supermaker.ai/video/first-last-frame/"
}
]
end
defp docs do
[
main: "FirstLastFrame",
source_ref: "v#{@version}",
source_url: @source_url
]
end
end