Packages

Core logic of a Tic-Tac-Toe game, including an unbeatable minimax-based computer player.

Current section

Files

Jump to
ttt_core mix.exs
Raw

mix.exs

defmodule TttCore.MixProject do
use Mix.Project
def package do
[
files: ["lib", "test", "mix.exs", "README.md"],
maintainers: ["Michael Jacobson"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/michaelbjacobson/ttt_core"}
]
end
def project do
[
app: :ttt_core,
version: "0.2.0",
elixir: "~> 1.6",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env() == :prod,
deps: deps(),
description: "Core logic of a Tic-Tac-Toe game, including an unbeatable minimax-based computer player.",
package: package()
]
end
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
{:ex_doc, ">= 0.0.0", only: :dev}
]
end
end