Skip to content
This repository has been archived by the owner on Aug 28, 2023. It is now read-only.

Commit

Permalink
Update mix.exs for publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
maennchen committed Feb 27, 2018
1 parent cb18cba commit 8c1b0db
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions mix.exs
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
defmodule ExWirecard.MixProject do
@moduledoc false

use Mix.Project

def project do
Expand All @@ -7,6 +9,8 @@ defmodule ExWirecard.MixProject do
version: "0.1.0",
elixir: "~> 1.6",
start_permanent: Mix.env() == :prod,
description: description(),
package: package(),
test_coverage: [tool: ExCoveralls],
deps: deps(),
dialyzer: [
Expand All @@ -29,6 +33,23 @@ defmodule ExWirecard.MixProject do
]
end

defp description do
"""
API Wrapper for WireCard.
"""
end

defp package do
# These are the default files included in the package
[
name: :ex_wirecard,
files: ["lib", "mix.exs", "README*", "LICENSE*"],
maintainers: ["Jonatan Männchen"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/jshmrtn/ex-wirecard"}
]
end

# Run "mix help deps" to learn about dependencies.
defp deps do
[
Expand Down

0 comments on commit 8c1b0db

Please sign in to comment.