Current section
Files
Jump to
Current section
Files
roman_numerals
mix.exs
mix.exs
defmodule RomanNumerals.Mixfile do
use Mix.Project
@version "1.0.0"
def project do
[
app: :roman_numerals,
version: @version,
elixir: "~> 1.0",
deps: deps,
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
test_coverage: [tool: ExCoveralls],
name: "Roman Numerals",
source_url: "https://github.com/lpil/roman-numerals",
description: "Convert numbers to Roman numerals and back.",
package: [
contributors: ["Louis Pilfold"],
licenses: ["MIT"],
links: %{ "GitHub" => "https://github.com/lpil/roman-numerals" },
files: ~w(mix.exs lib README.md LICENCE)
]
]
end
def application do
[
applications: []
]
end
defp deps do
[
# Automatic test runner
{:mix_test_watch, only: :dev},
# Code style linter
{:dogma, only: :dev},
# Erlang Quickcheck
{:triq, github: "krestenkrab/triq", only: :test},
# Elixir wrapper for triq
{:excheck, only: :test},
# Documentation checker
{:inch_ex, only: ~w(dev test docs)a},
# Markdown processor
{:earmark, "~> 0.1", only: :dev},
# Documentation generator
{:ex_doc, "~> 0.7", only: :dev},
]
end
end