From 0053458a3d5d476618112e9d1cd95213a6fc7655 Mon Sep 17 00:00:00 2001 From: Michael Ruoss Date: Fri, 31 Jul 2020 16:10:21 +0200 Subject: [PATCH] publish version v0.0.1 --- mix.exs | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/mix.exs b/mix.exs index b0d9e05..d2caa59 100644 --- a/mix.exs +++ b/mix.exs @@ -4,15 +4,15 @@ defmodule Ymlr.MixProject do def project do [ app: :ymlr, - description: "A YAML Encoder", + description: "A YAML encoder for Elixir", version: "0.0.1", elixir: "~> 1.10", deps: deps(), dialyzer: dialyzer(), + package: package(), preferred_cli_env: cli_env(), test_coverage: [tool: ExCoveralls], test_paths: ["lib"], - ] end @@ -51,4 +51,15 @@ defmodule Ymlr.MixProject do plt_file: {:no_warn, "priv/plts/k8s.plt"} ] end + + defp package do + [ + name: :ymlr, + maintainers: ["Michael Ruoss", "Jean-Luc Geering"], + licenses: ["MIT"], + links: %{ + "GitHub" => "https://github.com/ufirstgroup/ymlr" + } + ] + end end