Packages

It creates a default profile picture for users in the case where they don't want to upload real picture.

Current section

Files

Jump to
Raw

mix.exs

defmodule Identicon.MixProject do
use Mix.Project
def project do
[
app: :tinpo_identicon,
version: "0.1.0",
elixir: "~> 1.10",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env() == :prod,
description: description(),
package: package(),
deps: deps()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger, :crypton]
]
end
defp package do
[
files: ["lib", "mix.exs", "README*", "LICENSE*"],
maintainers: ["Olusegun Olatinpo"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/Ayotinpo/tinpo_identicon"}
]
end
defp description do
"""
It creates a default profile picture for users in the case where they don't want
to upload real picture.
"""
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:ex_doc, "~> 0.22.5"},
{:benchee_html,"~> 1.0"},
{:png, "~> 0.2.1"},
# {:egd, github: "erlang/egd"}
# {:dep_from_hexpm, "~> 0.3.0"},
# {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"}
]
end
end