Packages

Kling 4.0 AI Video Generator Free Online. Visit https://www.kling4.app for more information.

Current section

Files

Jump to
kling4_app mix.exs
Raw

mix.exs

defmodule Kling4App.MixProject do
use Mix.Project
@version "0.1.0"
@source_url "https://www.kling4.app"
def project do
[
app: :kling4_app,
version: @version,
elixir: "~> 1.14",
start_permanent: Mix.env() == :prod,
deps: deps(),
description: description(),
package: package(),
docs: docs(),
name: "Kling4App",
source_url: @source_url
]
end
def application do
[extra_applications: [:logger]]
end
defp deps do
[{:ex_doc, "~> 0.30", only: :dev, runtime: false}]
end
defp description do
"Kling 4.0 AI Video Generator Free Online. Visit https://www.kling4.app for more information."
end
defp package do
[
name: "kling4_app",
licenses: ["MIT"],
links: %{
"Homepage" => "https://www.kling4.app",
"Website" => "https://www.kling4.app/"
},
files: ~w(lib mix.exs README.md LICENSE)
]
end
defp docs do
[main: "readme", extras: ["README.md"]]
end
end