Skip to content

Commit

Permalink
Merge pull request #4 from SmartColumbusOS/adding_hex_stuff
Browse files Browse the repository at this point in the history
Adding hex requirements to mix file
  • Loading branch information
jeffgrunewald authored Feb 28, 2019
2 parents 2ca8496 + e3e7419 commit e3ad247
Showing 1 changed file with 17 additions and 2 deletions.
19 changes: 17 additions & 2 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,13 @@ defmodule Divo.MixProject do
def project do
[
app: :divo,
version: "0.1.0",
version: "0.1.1",
elixir: "~> 1.7",
start_permanent: Mix.env() == :prod,
deps: deps()
deps: deps(),
package: package(),
description: description(),
source_url: "https://github.com/SmartColumbusOS/divo"
]
end

Expand All @@ -26,4 +29,16 @@ defmodule Divo.MixProject do
{:patiently, "~> 0.2.0"}
]
end

defp description do
"A library for easily constructing integration service dependencies in docker and orchestrating with mix."
end

defp package do
[
organization: "smartcolumbus_os",
licenses: ["AllRightsReserved"],
links: %{"GitHub" => "https://github.com/SmartColumbusOS/divo"}
]
end
end

0 comments on commit e3ad247

Please sign in to comment.