Current section
Files
Jump to
Current section
Files
future_butcher_engine
mix.exs
mix.exs
defmodule FutureButcherEngine.Mixfile do
use Mix.Project
def project do
[
app: :future_butcher_engine,
version: "0.2.0",
elixir: "~> 1.12.3",
description: description(),
package: package(),
source_url: "https://github.com/jonchoukroun/future-butcher-engine",
homepage_url: "https://www.futurebutcher.com",
start_permanent: Mix.env == :prod,
deps: deps()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger],
mod: {FutureButcherEngine.Application, []}
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:jason, "~> 1.1"},
{:ex_doc, "~> 0.19", only: :dev, runtime: false}
]
end
defp description do
"Game engine for Future Butcher."
end
defp package do
[
licenses: ["GNU GPLv3"],
links: %{"GitHub" => "https://github.com/jonchoukroun/future-butcher-engine"}
]
end
end