From e3e7419c3e69a361758ed0543fee55dfe00f4ea8 Mon Sep 17 00:00:00 2001 From: Timothy Regan Date: Thu, 28 Feb 2019 10:05:50 -0500 Subject: [PATCH] Adding hex requirements to mix file --- mix.exs | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/mix.exs b/mix.exs index 754c9cd..3fc8653 100644 --- a/mix.exs +++ b/mix.exs @@ -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 @@ -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