Current section
Files
Jump to
Current section
Files
mix.exs
defmodule Eligator.Mixfile do
use Mix.Project
def project do
[app: :eligator,
version: "0.1.0",
elixir: "~> 1.3",
deps: deps(),
name: "eligator",
source_url: "https://github.com/mytrile/eligator",
homepage_url: "https://github.com/mytrile/eligator",
description: "Simple gating module",
package: package]
end
# Configuration for the OTP application
#
# Type "mix help compile.app" for more information
def application do
[applications: [:logger]]
end
defp deps do
[]
end
defp package do
[maintainers: ["Dimitar Kostov"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/mytrile/eligator"},
files: ~w(lib mix.exs README.md)]
end
end