Current section
Files
Jump to
Current section
Files
mix.exs
defmodule Monetized.Mixfile do
use Mix.Project
def project do
[app: :monetized,
name: "Monetized",
source_url: "https://github.com/theocodes/monetized",
version: "0.1.0",
elixir: "~> 1.1",
description: description,
package: package,
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
deps: deps]
end
def application do
[applications: [:logger]]
end
defp deps do
[{:ex_doc, "~> 0.11", only: :dev},
{:earmark, "~> 0.1", only: :dev}]
end
defp package do
[
maintainers: ["Thiago Felippe"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/theocodes/monetized",
"Docs" => "http://hexdocs.pm/monetized/0.1.0"}
]
end
defp description do
"""
Monetized is a small helper library for handling money.
"""
end
end