Packages

Siariwyd: Sharing and Reusing Functions' Implementations that must be compiled together.

Current section

Files

Jump to
siariwyd mix.exs
Raw

mix.exs

defmodule Siariwyd.Mixfile do
use Mix.Project
@version "0.1.0"
def project do
[app: :siariwyd,
version: @version,
elixir: "~> 1.3",
description: description,
package: package,
source_url: "https://github.com/ianrumford/siariwyd",
homepage_url: "https://github.com/ianrumford/siariwyd",
docs: [extras: ["./README.md"]],
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.13.0", only: :dev},
]
end
defp package do
[maintainers: ["Ian Rumford"],
files: ["lib", "mix.exs", "README*", "LICENSE*"],
licenses: ["MIT"],
links: %{github: "https://github.com/ianrumford/siariwyd"}]
end
defp description do
"""
Siariwyd: Sharing and Reusing Functions' Implementations that must be compiled together.
"""
end
end