Packages
Community Theatre helps you put on shows when you don't have the resources to be on Broadway.
Current section
Files
Jump to
Current section
Files
community_theatre
mix.exs
mix.exs
defmodule CommunityTheatre.MixProject do
use Mix.Project
@description """
Community Theatre helps you put on shows when you don't have the resources to be on Broadway.
"""
def project do
[
app: :community_theatre,
version: "0.1.1",
elixir: "~> 1.10",
start_permanent: Mix.env() == :prod,
deps: deps(),
package: package(),
description: @description
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger],
mod: {CommunityTheatre.Application, []}
]
end
def package do
[
maintainers: ["James Harton <james@automat.nz>"],
licenses: ["Hippocratic"],
links: %{
"Source" => "https://gitlab.com/jimsy/community-theatre"
}
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:credo, "~> 1.3"},
{:earmark, ">= 0.0.0", only: [:dev, :test]},
{:ex_doc, ">= 0.0.0", only: [:dev, :test]},
{:heap, "~> 2.0"}
]
end
end