Current section
Files
Jump to
Current section
Files
mix.exs
defmodule DropThe.MixProject do
use Mix.Project
def project do
[
app: :dropthe,
version: "0.1.0",
elixir: "~> 1.14",
description: "Access open datasets for movies, series, crypto, companies from DropThe.",
package: package(),
docs: docs(),
source_url: "https://github.com/arnaudleroy-studio/dropthe-elixir",
homepage_url: "https://dropthe.org"
]
end
defp package do
[
licenses: ["MIT"],
links: %{
"Homepage" => "https://dropthe.org",
"GitHub" => "https://github.com/arnaudleroy-studio/dropthe-elixir",
"Documentation" => "https://dropthe.org/data/"
}
]
end
defp docs do
[main: "DropThe"]
end
end