Packages

RPG is a Role Playing Game engine written in Elixir. At this point it is not even a complete, modest RPG. However it has ambitions to be an RPG platform on which anyone can create their own role playing system.

Retired package: Security issue - This package was mistakenly published publicly.

Current section

Files

Jump to
rpg mix.exs
Raw

mix.exs

defmodule RPG.MixProject do
use Mix.Project
def project do
[
aliases: aliases(),
organization: "daytonnolan",
app: :rpg,
deps: deps(),
docs: docs(),
description: description(),
elixir: "~> 1.13",
preferred_cli_env: [espec: :test],
start_permanent: Mix.env() == :prod,
version: "0.1.0",
package: %{
licenses: ["UNLICENSED"],
links: %{
"Homepage" => "https://github.com/daytonn/rpg",
"Source" => "https://github.com/daytonn/rpg"
}
}
]
end
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
{:espec, "~> 1.8.3", only: :test},
{:ex_doc, "~> 0.27", only: :dev, runtime: false}
]
end
defp aliases do
[
test: "espec"
]
end
defp docs do
[
main: "RPG",
# logo: "path/to/logo.png",
extras: ["README.md"],
authors: ["Dayton Nolan"]
]
end
defp description() do
~S"""
RPG is a Role Playing Game engine written in Elixir.
At this point it is not even a complete, modest RPG.
However it has ambitions to be an RPG platform on which
anyone can create their own role playing system.
"""
end
end