Packages

Brainfux enables you to define brainfuck function in elixir.

Current section

Files

Jump to
brainfux mix.exs
Raw

mix.exs

defmodule Brainfux.Mixfile do
use Mix.Project
@github_url "https://github.com/SekiT/brainfux"
def project do
[
app: :brainfux,
version: "0.2.5",
elixir: "~> 1.3",
name: "Brainfux",
description: description(),
package: package(),
source_url: @github_url,
deps: deps(),
docs: [extras: ["README.md"]],
dialyzer: [plt_add_deps: :transitive],
test_coverage: [tool: ExCoveralls],
]
end
def application do
[
applications: []
]
end
defp deps do
[
{:ex_doc , "~> 0.14.3", only: :dev },
{:dialyxir , "~> 0.4.0" , only: :dev },
{:credo , "~> 0.5.2" , only: :dev },
{:meck , "~> 0.8.4" , only: :test},
{:excoveralls, "~> 0.5.7" , only: :test},
]
end
defp description do
"""
Brainfux enables you to define brainfuck function in elixir.
"""
end
defp package do
[
name: :brainfux,
licenses: ["WTFPL"],
maintainers: ["Takaaki Seki"],
links: %{"GitHub" => @github_url},
]
end
end