Current section

Files

Jump to
neurx mix.exs
Raw

mix.exs

defmodule Neurx.MixProject do
use Mix.Project
@version "0.1.4"
def project do
[
app: :neurx,
version: @version,
elixir: "~> 1.6",
deps: deps(),
package: package(),
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
name: "neurx",
docs: [source_ref: "v#{@version}", main: "Neurx"],
source_url: "https://github.com/NeurX/neurx",
description: "
NN library for Elixir
",
preferred_cli_env: [
"coveralls": :test,
"coveralls.detail": :test,
"coveralls.post": :test,
"coveralls.html": :test,
"coveralls.json": :test,
],
test_coverage: [tool: ExCoveralls],
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:excoveralls, "~> 0.8.2", only: :test},
{:ex_doc, ">= 0.0.0", only: :dev}
# {:dep_from_hexpm, "~> 0.3.0"},
# {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"},
]
end
defp package do
[
maintainers: [
"Jakob Roberts",
"Joshua Portelance",
"Jim Galloway",
"Claudia Li",
],
licenses: ["LGPL"],
links: %{github: "https://github.com/NeurX/neurx"},
]
end
end