aboutsummaryrefslogtreecommitdiff
path: root/mix.exs
diff options
context:
space:
mode:
authorSteven Blowers <sblowers@findmypast.com>2016-09-06 12:20:44 +0100
committerSteven Blowers <sblowers@findmypast.com>2016-09-06 12:20:44 +0100
commit05e93e202cbc4cefe4ce522f270b359161b0652c (patch)
treeba3e86f920a3777bc29b44a75c5053b4bfe80619 /mix.exs
parent587c6bc726844156fc0bf998c321fe771292ad73 (diff)
downloadzendex-05e93e202cbc4cefe4ce522f270b359161b0652c.tar.gz
zendex-05e93e202cbc4cefe4ce522f270b359161b0652c.tar.xz
package details + license
Diffstat (limited to 'mix.exs')
-rw-r--r--mix.exs31
1 files changed, 17 insertions, 14 deletions
diff --git a/mix.exs b/mix.exs
index 7c84134..6318149 100644
--- a/mix.exs
+++ b/mix.exs
@@ -3,30 +3,33 @@ defmodule Zendex.Mixfile do
def project do
[app: :zendex,
- version: "0.1.0",
+ version: "0.0.1",
elixir: "~> 1.3",
+ description: description(),
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
- deps: deps()]
+ deps: deps(),
+ package: package()]
end
- # Configuration for the OTP application
- #
- # Type "mix help compile.app" for more information
def application do
[applications: [:logger]]
end
- # Dependencies can be Hex packages:
- #
- # {:mydep, "~> 0.3.0"}
- #
- # Or git/path repositories:
- #
- # {:mydep, git: "https://github.com/elixir-lang/mydep.git", tag: "0.1.0"}
- #
- # Type "mix help deps" for more examples and options
defp deps do
[]
end
+
+ defp description do
+ """
+ An Elixir wrapper for the Zendesk API.
+ """
+ end
+
+ defp package do
+ [name: :zendex,
+ maintainers: ["Steven Blowers"],
+ licenses: ["Apache 2.0"],
+ links: %{"GitHub" => "https://github.com/shdblowers/zendex"}]
+ end
end