Packages

Professional Elixir integration for pardon-dance. Provides utilities for building links and integrating with https://supermaker.ai/video/blog/unlocking-the-magic-of-pardon-dance-the-viral-video-effect-taking-over-social-media/.

Current section

Files

Jump to
Raw

mix.exs

defmodule PardonDance.MixProject do
use Mix.Project
@version "1769073.596.343"
@source_url "https://github.com/amelia19981217-sketch/pardon-dance"
def project do
[
app: :pardon_dance,
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/blog/unlocking-the-magic-of-pardon-dance-the-viral-video-effect-taking-over-social-media/",
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 pardon-dance.
Provides utilities for building links and integrating with https://supermaker.ai/video/blog/unlocking-the-magic-of-pardon-dance-the-viral-video-effect-taking-over-social-media/.
"""
end
defp package do
[
name: "pardon_dance",
files: ~w(lib .formatter.exs mix.exs README.md LICENSE),
licenses: ["MIT"],
links: %{
"GitHub" => @source_url,
"Homepage" => "https://supermaker.ai/video/blog/unlocking-the-magic-of-pardon-dance-the-viral-video-effect-taking-over-social-media/"
}
]
end
defp docs do
[
main: "PardonDance",
source_ref: "v#{@version}",
source_url: @source_url
]
end
end