Current section
Files
Jump to
Current section
Files
ex_neural_network
mix.exs
mix.exs
defmodule ExNeuralNetwork.MixProject do
use Mix.Project
@version "0.1.3"
def project do
[
app: :ex_neural_network,
version: @version,
elixir: "~> 1.10",
start_permanent: Mix.env() == :prod,
description: description(),
package: package(),
deps: deps(),
source_url: "https://github.com/rcbyr/ex_neural_network",
docs: docs()
]
end
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
{:credo, "~> 1.0.0", [only: [:dev, :test], runtime: false]},
{:ex_doc, "~> 0.21.3"},
{:matrex, "~> 0.6.8"}
]
end
defp description() do
"A simple implementation of a neural network in elixir."
end
defp package() do
[
name: "ex_neural_network",
files: ~w(lib .formatter.exs mix.exs README.md LICENSE),
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/rcbyr/ex_neural_network"}
]
end
defp docs() do
[
main: "ExNeuralNetwork",
source_ref: "v#{@version}",
canonical: "http://hexdocs.pm/ex_neural_network",
extras: [
"README.md"
]
]
end
end